-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert accidentally deleted instruction.
- Loading branch information
Showing
1 changed file
with
10 additions
and
3 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 |
---|---|---|
|
@@ -585,9 +585,16 @@ Please [add your SSH key to your GitHub account](https://docs.github.com/en/auth | |
<details> | ||
<summary><b>Instructions</b></summary> | ||
1. Create the Conda environment as described in [Create Anaconda environment](#1-create-anaconda-environment) | ||
2. Install AlphaPulldown package and add its submodules to the Conda environment (does not work if you want to update the dependencies) | ||
1. Clone the GitHub repo | ||
```bash | ||
git clone --recurse-submodules [email protected]:KosinskiLab/AlphaPulldown.git | ||
cd AlphaPulldown | ||
git submodule init | ||
git submodule update | ||
2. Create the Conda environment as described in [Create Anaconda environment](#1-create-anaconda-environment) | ||
3. Install AlphaPulldown package and add its submodules to the Conda environment (does not work if you want to update the dependencies) | ||
```bash | ||
source activate AlphaPulldown | ||
|