-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 3c731f0
Showing
1 changed file
with
21 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# pyfgaws | ||
|
||
# Getting Setup | ||
|
||
Conda is used to install a specific version of python and [poetry](https://github.com/python | ||
-poetry/poetry) which is then used to manage the python development environment. If not already | ||
installed, install [miniconda from the latest platform-appropriate installer](miniconda-link | ||
). Then run: | ||
|
||
``` | ||
conda create -n pyfgaws -c bioconda --file conda-requirements.txt | ||
``` | ||
|
||
Then activate the new environment and install the toolkit: | ||
|
||
``` | ||
conda activate pyfgaws | ||
poetry install | ||
``` | ||
|
||
[miniconda-link]: https://docs.conda.io/en/latest/miniconda.html |