-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
.. _installation: | ||
|
||
Installation | ||
============ | ||
|
||
Rxn-INSIGHT can be installed from PyPI via pip or directly from the GitHub repository. | ||
|
||
Option 1: Installing from PyPI using pip | ||
---------------------------------------- | ||
.. code-block:: | ||
conda create -n rxn-insight python=3.11 | ||
conda activate rxn-insight | ||
pip install rxn-insight | ||
.. note:: | ||
Currently only python 3.10 and python 3.11 are supported. | ||
|
||
Option 2: Installing from source using pip | ||
------------------------------------------ | ||
.. code-block:: | ||
conda create -n rxn-insight python=3.11 | ||
conda activate rxn-insight | ||
git clone https://github.com/mrodobbe/Rxn-INSIGHT.git | ||
cd Rxn-INSIGHT | ||
pip install -e . | ||
.. note:: | ||
You can also use this option to install additional optional dependencies for development purposes, | ||
which are required to run the tests and build the docs by running ``pip install -e ".[test,doc]"``. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters