Installation#
We recommend using LattiCS in a separate virtual environment to avoid potential issues caused by conflicting package versions.
Install on Linux#
Create a new virtual environment:
python -m venv lattics
Activate the environment:
source lattics/bin/activate
Install the LattiCS package from the Git repository:
pip install git+https://github.com/kissdaniel/lattics.git
Start a Python shell and verify that the package can be successfully imported:
python
>>> import lattics
If no error messages appear, the installation was successful.
Install on Windows#
Create a new virtual environment:
python -m venv lattics
Activate the environment:
lattics\Scripts\activate.bat
Install the LattiCS package from the Git repository:
pip install git+https://github.com/kissdaniel/lattics.git
Start a Python shell and verify that the package can be successfully imported:
python
>>> import lattics
If no error messages appear, the installation was successful.