Installation
To utilize the CyRxnOpt Library, follow the steps below for either pip or manual installation:
via Pip
If you have not already, it is recommended to use a virtual environment for your project:
python -m venv venv
If you created a virtual environment, activate it:
source venv/bin/activate # On Unix or MacOS .\venv\Scripts\activate # On Windows
Install the CyRxnOpt library from PyPI using
pip:pip install cyrxnopt
Note
You can also add
cyrxnoptto your project’s dependency list inrequirements.txt,pyproject.toml, orsetup.cfgfor automatic installation with your project.
via Source Code (Manual)
Clone the repository:
git clone https://github.com/RxnRover/CyRxnOpt.git
Navigate to the library directory:
cd CyRxnOpt
Create a virtual environment:
python -m venv venv
Activate the virtual environment:
source venv/bin/activate # On Unix or MacOS .\venv\Scripts\activate # On Windows
Install the library:
pip install .