Installation
Install from PyPI
Section titled “Install from PyPI”pip install nx_neptuneFor Jupyter notebook support:
pip install "nx_neptune[jupyter]"Build from source
Section titled “Build from source”git clone git@github.com:awslabs/nx-neptune.gitcd nx-neptunemake installBuild and install from wheel
Section titled “Build and install from wheel”# Package the project from source:python -m pip wheel -w dist .
# Install from wheel:pip install "dist/nx_neptune-0.6.0-py3-none-any.whl"Dependency management
Section titled “Dependency management”Dependencies are pinned in lock files (requirements.txt, requirements-dev.txt, requirements-jupyter.txt) generated by pip-tools. If you update pyproject.toml, regenerate them with:
make lockmake lock must be run with a Python 3.11 interpreter to match CI. If your default Python is a different version:
python3.11 -m venv .venv-locksource .venv-lock/bin/activatepip install pip-toolsmake lock