Skip to content

Commit

Permalink
fix conda ncurses issue
Browse files Browse the repository at this point in the history
  • Loading branch information
leepc12 committed Feb 24, 2022
1 parent c6f5a21 commit 7a692c7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions scripts/install_conda_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@ conda create -n encode-chip-seq-pipeline-macs2 --file ${SH_SCRIPT_DIR}/requireme
conda create -n encode-chip-seq-pipeline-spp --file ${SH_SCRIPT_DIR}/requirements.spp.txt \
--override-channels -c r -c bioconda -c defaults -y

# adhoc fix for https://github.com/ENCODE-DCC/chip-seq-pipeline2/issues/259
# force-install readline 6.2 from conda-forge (ignoring dependencies)
conda install -n encode-chip-seq-pipeline-spp --no-deps --no-update-deps -y readline==6.2 -c conda-forge
# adhoc fix for the following issues:
# - https://github.com/ENCODE-DCC/chip-seq-pipeline2/issues/259
# - https://github.com/ENCODE-DCC/chip-seq-pipeline2/issues/265
# force-install readline 6.2, ncurses 5.9 from conda-forge (ignoring dependencies)
conda install -n encode-chip-seq-pipeline-spp --no-deps --no-update-deps -y \
readline==6.2 ncurses==5.9 -c conda-forge

echo "$(date): Done successfully."

Expand Down

0 comments on commit 7a692c7

Please sign in to comment.