Skip to content

Commit

Permalink
pointed anaconda installation to conda because they keep it up and we…
Browse files Browse the repository at this point in the history
… dont
  • Loading branch information
JLSteenwyk committed Feb 7, 2024
1 parent 4363d3b commit 1e6be34
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ deactivate

To install via anaconda, execute the following command:
```shell
conda install -c jlsteenwyk phykit
conda install bioconda::phykit
```
Visit here for more information:
https://anaconda.org/JLSteenwyk/phykit
https://anaconda.org/bioconda/phykit

<br />

Expand Down
12 changes: 6 additions & 6 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ software dependency issues. To do so, execute the following commands:
.. code-block:: shell
# create virtual environment
python -m venv .venv
python -m venv venv
# activate virtual environment
source .venv/bin/activate
source venv/bin/activate
# install phykit
pip install phykit
Expand All @@ -51,9 +51,9 @@ following commands:
git clone https://github.com/JLSteenwyk/PhyKIT.git
cd PhyKIT/
# create virtual environment
python -m venv .venv
python -m venv venv
# activate virtual environment
source .venv/bin/activate
source venv/bin/activate
# install
make install
Expand All @@ -72,10 +72,10 @@ To install via anaconda, execute the following command:

.. code-block:: shell
conda install -c jlsteenwyk phykit
conda install bioconda::phykit
Visit here for more information:
https://anaconda.org/JLSteenwyk/phykit
https://anaconda.org/bioconda/phykit

**2) Usage**

Expand Down

0 comments on commit 1e6be34

Please sign in to comment.