Installation¶
The easiest way to get lammpsio is from PyPI:
pip install lammpsio
or conda-forge:
conda install -c conda-forge lammpsio
Building from source¶
If you want to build from source, you can also use pip:
pip install .
If you are developing new code, include the -e option for an editable build.
You should then also install the developer tools:
pip install -r requirements-dev.txt -r doc/requirements.txt
A suite of unit tests is provided with the source code and can be run with
pytest:
python -m pytest
You can build the documentation from source with:
cd doc
make html