Skip to content

Commit

Permalink
update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
albertbou92 committed Aug 7, 2024
1 parent 38dad60 commit 0cd896b
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/unittest/install_dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
# Upgrade pip
python -m pip install --upgrade pip
python -m pip install flake8 pytest pytest-cov hydra-core tqdm

# Not using nightly torch
# Install dependencies
python -m pip install flake8 pytest pytest-cov hydra-core tqdm
python -m pip install torch torchvision
# python -m pip install --pre torch --extra-index-url https://download.pytorch.org/whl/nightly/cpu --force-reinstall

python -m pip torchrl
python -m pip install rdkit==2023.3.3
python -m pip MolScore
python -m pip promptsmiles
python -m pip transformers
# Ensure dependencies are installed in the right order
python -m pip install transformers promptsmiles torchrl rdkit==2023.3.3 MolScore

# Verify installations
python -c "import transformers; print(transformers.__version__)"
python -c "import promptsmiles; print(promptsmiles.__version__)"

# Install local package
cd ../acegen-open
pip install -e .

0 comments on commit 0cd896b

Please sign in to comment.