Installation#

galaxy-graph is a Python library and can be installed in different ways.

It requires Python.

Quick step-by-step#

To try galaxy-graph, move to an empty directory, run python -m venv .venv, then source .venv/bin/activate. Finally, install this library with python -m pip install galaxy_graph.

You can toy with it to try out features, start the quick-start etc… You can delete the library by removing the .venv folder (rm -r .venv) on linux.

PyPI#

galaxy-graph package is published on the Python Package Index. Any python package manager will allows installing this package from this source.

Traditionally, this is done with pip, with:

python -m pip install galaxy_graph

Tip

It is higly encouraged to install packages in a virtual environment to avoid installing package system-wide, which is often not what you want.

Custom registry#

This package is also published on my personnal package registry.

A lot of tools also allows to install a package from another package registry.

With pip, this is done with:

python -m pip install --index-url https://git.linarphy.net/api/packages/linarphy/pypi/simple/ galaxy-graph

Tip

Using custom registry will give the exact same package than using PyPI. Do not expect any alpha or extra release.