Skip to content

Commit

Permalink
use mamba
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaMolod committed Oct 30, 2024
1 parent 8bf9580 commit 690e91d
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/github_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,21 @@ jobs:
echo "$GITHUB_WORKSPACE/alphapulldown" >> $GITHUB_PATH
- if: matrix.install-type == 'user'
run: |
conda create -n AlphaPulldown -c omnia -c bioconda -c conda-forge python==${{ matrix.python-version }} openmm==8.0 pdbfixer==1.9 kalign2 hmmer hhsuite modelcif
conda install --solver=classic -y -c conda-forge conda-libmamba-solver libmamba libmambapy libarchive
mamba create -n AlphaPulldown -c omnia -c bioconda -c conda-forge python==${{ matrix.python-version }} \
openmm==8.0 pdbfixer==1.9 kalign2 hmmer hhsuite modelcif
eval "$(conda shell.bash hook)"
conda activate AlphaPulldown
mamba activate AlphaPulldown
pip install alphapulldown==2.0.0b6
pip install -U "jax[cuda12]"
conda install -c conda-forge biopython==1.81 importlib_metadata pytest # REMOVE AFTER UPDATING THE PYPI RELEASE VERSION!
mamba install -c conda-forge biopython==1.81 importlib_metadata pytest # REMOVE AFTER UPDATING THE PYPI RELEASE VERSION!
- if: matrix.install-type == 'developer'
run: |
conda create -n AlphaPulldown -c omnia -c bioconda -c conda-forge python==${{ matrix.python-version }} openmm==8.0 pdbfixer==1.9 kalign2 hmmer hhsuite modelcif
conda install --solver=classic -y -c conda-forge conda-libmamba-solver libmamba libmambapy libarchive
mamba create -n AlphaPulldown -c omnia -c bioconda -c conda-forge python==${{ matrix.python-version }} \
openmm==8.0 pdbfixer==1.9 kalign2 hmmer hhsuite modelcif
eval "$(conda shell.bash hook)"
conda activate AlphaPulldown
mamba activate AlphaPulldown
pip install -e .
pip install -U "jax[cuda12]"
# export PYTHONPATH=$PWD/AlphaLink2:$PYTHONPATH
Expand Down

0 comments on commit 690e91d

Please sign in to comment.