Installation#
You can install scikit-matter either via pip using
pip install skmatter
or conda
conda install -c conda-forge skmatter
You can then import skmatter
and use scikit-matter in your projects!
Install from source#
For development purposes you should clone the repository and install the current development version from the source code
git clone https://github.com/lab-cosmo/scikit-matter
cd scikit-matter
pip install .
Alternatively, if you don’t have special privileges, install
the package using the --user
flag:
pip install . --user
You’re ready to import skmatter from your code! Have a look at the API Reference for how to use the code.