Installation
Welcome to the installation of Pysammos!
There are several ways to install Pysammos, depending on your preferences and needs.
Using GitHub repository: You can clone the Pysammos repository from GitHub and install it locally. This method allows you to access the latest version of the code and contribute to its development if you wish.
First, clone the repository and navigate to the project directory:
git clone https://github.com/Claudia-Elijas/pysammos.git cd pysammos
Then, you can install the required dependencies from the environment yml file:
conda env create -f pysammos_env.yml
And finally, install the package:
pip install -e .
Note that the -e flag allows you to install the package in editable mode, which means that any changes you make to the code will be reflected in the installed package without needing to reinstall it. This is particularly useful for development and testing purposes.
For more details, please refer to the Pysammos GitHub repository
Using pip: You can install Pysammos using pip, which will be available soon on PyPI. This method is straightforward and allows you to easily manage the package and its dependencies.
First make sure you have pip installed and updated:
pip install --upgrade pip
Then, you can install Pysammos using pip:
pip install pysammos