-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing linux installation pages #672
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
When you start a Memgraph instance, you may see the following list of notes in | ||
your terminal: | ||
|
||
```console | ||
You are running Memgraph v1.4.0-community | ||
|
||
NOTE: Please install networkx to be able to use graph_analyzer module. Using Python: | ||
3.8.2 (default, Jul 16 2020, 14:00:26) | ||
[GCC 9.3.0] | ||
|
||
NOTE: Please install networkx to be able to use Memgraph NetworkX wrappers. Using Python: | ||
3.8.2 (default, Jul 16 2020, 14:00:26) | ||
[GCC 9.3.0] | ||
|
||
NOTE: Please install networkx, numpy, scipy to be able to use proxied NetworkX algorithms. E.g., CALL nxalg.pagerank(...). | ||
Using Python: | ||
3.8.2 (default, Jul 16 2020, 14:00:26) | ||
[GCC 9.3.0] | ||
|
||
NOTE: Please install networkx to be able to use wcc module. | ||
Using Python: | ||
3.8.2 (default, Jul 16 2020, 14:00:26) | ||
[GCC 9.3.0] | ||
``` | ||
|
||
If you wish to work with built-in NetworkX modules in Memgraph, you need to | ||
install the following Python libraries: | ||
* [NumPy](https://numpy.org/) | ||
* [SciPy](https://www.scipy.org/) | ||
* [NetworkX](https://networkx.org/) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this still true? I don't have Linux, so just checking here. I guess it's a bit different in Docker
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, this is true. Still present issue.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In new docs you have section that looks like:
## Installation guide
<Steps>
{<h3>Download Memgraph RPM Package</h3>}
Downloaded the latest Memgraph RPM Package from the [Memgraph Download
Hub](https://memgraph.com/download/).
You can also use [direct download
links](/getting-started/install-memgraph/direct-download-links) to get the
latest Memgraph packages.
To me it makes no sense to have a section that talks about generic case (Download Memgraph RPM Package) and mentions Downloaded the latest Memgraph RPM Package from the [Memgraph Download Hub](https://memgraph.com/download/).
when the page talks about specific Linux distribution.
And this part is mentioned, e.g. "For example for Amazon Linux 2:
".
I think that it would make sense to remove this generic part about RPM and talk aonly about each distro in the individual documentation, e.g.
## Installation guide
<Steps>
{<h3>Download Memgraph for Amazon Linux</h3>}
Downloaded the latest Memgraph Package for Amazon Linux from the [Memgraph Download
Hub](https://memgraph.com/download/).
You can also use [direct download
links](/getting-started/install-memgraph/direct-download-links) to get the
latest Memgraph packages.
Co-authored-by: Katarina Supe <61758502+katarinasupe@users.noreply.github.com>
I have updated the PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything looks OK to me.
* Updates to native install process (#661) Update the OS install commands and OS information. * Refactor the configuration guide (#691) Refactoring of the configuration page. * Add missing linux installation pages (#672) Add Linux installation pages. --------- Co-authored-by: Katarina Supe <61758502+katarinasupe@users.noreply.github.com> Co-authored-by: Kruno Golubic <46486712+kgolubic@users.noreply.github.com> * Add context for config via file (#707) Add context for configuration files. Co-authored-by: Katarina Supe <61758502+katarinasupe@users.noreply.github.com> --------- Co-authored-by: Katarina Supe <61758502+katarinasupe@users.noreply.github.com> * Update config settings for Docker Compose (#709) * Update config settings for Docker Compose * update content * Update pages/getting-started/install-memgraph/docker-compose.mdx Co-authored-by: Katarina Supe <61758502+katarinasupe@users.noreply.github.com> --------- Co-authored-by: Katarina Supe <61758502+katarinasupe@users.noreply.github.com> * Update docker config * Add db management placeholder * update conf settings for docker compose * docker management init (#716) * docker management init * update * code fixes * update * Fix vercel build error * Change naming --------- Co-authored-by: kgolubic <kgolubic@gmail.com> * Add new structure * update structure * Update data durability * Update logs * grammarly * Update auth * update db management * update config * update backup * update clustering * update query metadata * Update monitoring * update enterprise * Fix typo * Update image paths * Add redirects * Update links * update * update docker * update HA * update ssl * update volumes * update * update replication * Add Linux deployment page (#751) Add linux page. Co-authored-by: Katarina Supe <61758502+katarinasupe@users.noreply.github.com> --------- Co-authored-by: Katarina Supe <61758502+katarinasupe@users.noreply.github.com> * update * update restore on linux * Fix build errors --------- Co-authored-by: Katarina Supe <61758502+katarinasupe@users.noreply.github.com> Co-authored-by: Kruno Golubic <46486712+kgolubic@users.noreply.github.com> Co-authored-by: Matea Pesic <80577904+matea16@users.noreply.github.com> Co-authored-by: katarinasupe <supe.katarina@gmail.com> Co-authored-by: matea16 <mateapesic@hotmail.com> Co-authored-by: kgolubic <kgolubic@gmail.com>
Description
Add installation process for CentOS
Add installation process for Fedora
Add installation process for Rocky
Add installation process for Redhat
Add installation process for Amazon Linux
Closes #667
Closes #668
Closes #669