Skip to content

Commit

Permalink
Changed conda config --set channel_priority strict to `conda config…
Browse files Browse the repository at this point in the history
… --set channel_priority flexible` for installation process in TROUBLESHOOTING.md
  • Loading branch information
akikuno committed Jan 10, 2024
1 parent d230c49 commit c95681a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions docs/TROUBLESHOOTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ conda update -n base conda -y
conda config --add channels defaults
conda config --add channels bioconda
conda config --add channels conda-forge
conda config --set channel_priority strict
conda config --set channel_priority flexible

# Install DAJIN2 to a virtual environment
conda create -n env-dajin2 python=3.10 -y
Expand Down Expand Up @@ -50,10 +50,13 @@ We strongly recommend using Conda or Mamba for installation, as they efficiently
conda config --add channels defaults
conda config --add channels bioconda
conda config --add channels conda-forge
conda config --set channel_priority strict
conda config --set channel_priority flexible
```

3. Create a new virtual environment (optional but recommended):
> [!NOTE]
> Bioconda recommends using `conda config --set channel_priority strict`, but as the installation of openpyxl fails, please use `conda config --set channel_priority flexible`.
1. Create a new virtual environment (optional but recommended):

```bash
conda create -n env-dajin2
Expand Down

0 comments on commit c95681a

Please sign in to comment.