Skip to content

Installation

ClayRS requires Python 3.7 or later, while package dependencies are in requirements.txt and are all installable via pip, as ClayRS itself.

To install it execute the following command:

pip install clayrs

This will automatically install compatible versions of all dependencies.


Tip: We suggest installing ClayRS (or any python package, for that matters) in a virtual environment

Virtual environments are special isolated environments where all the packages and versions you install only apply to that specific environment. It’s like a private island! — but for code.

Read this Medium article for understanding all the advantages and the official python guide on how to set up one