💻 Installation

Get Started

Environment

In order to avoid potential conflicts with other packages, it is strongly recommended to use a virtual environment, e.g. python3 virtualenv (see python3 virtualenv documentation) or conda environments. Using an isolated environment makes it possible to install a specific version of Trinity-Neo and its dependencies independently of any previously installed Python packages.

Copy

# create a conda environment
conda create --name yourenvname python=3.8

# activate conda environment
conda activate yourenvname

# install trinity-neo
pip install trinity-neo

# create notebook kernel
python -m ipykernel install --user --name yourenvname --display-name "display-name"

Last updated