Installation
This guide will help you install the rythm_forge package. Follow the steps below to get started.
Installing with pip
To install the rythm_forge package using pip3, follow these steps:
Open your terminal.
Navigate to the directory containing the setup.py file of the rythm_forge package.
Run the following command:
pip3 install .
Installing in a Anaconda Virtual Environment
It is recommended to install the package in a virtual environment to avoid conflicts with other packages. Follow these steps:
Open your terminal.
Navigate to your project directory.
Create a virtual environment:
conda create env -n <env_name> python=3.10
Activate the virtual environment: .. code-block:: bash
conda activate <env_name>
Navigate to the directory containing the setup.py file of the rythm_forge package.
Install the package:
pip3 install .
Deactivating the Virtual Environment
To deactivate the virtual environment, run the following command:
conda deactivate