Skip to content

Commit

Permalink
Docker: Use Python virtual env for ASE test
Browse files Browse the repository at this point in the history
  • Loading branch information
oschuett committed Jan 8, 2024
1 parent c5db040 commit e2aab9b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tools/docker/scripts/test_ase.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,17 @@ apt-get update -qq
apt-get install -qq --no-install-recommends \
python3 \
python3-dev \
python3-venv \
python3-pip \
python3-wheel \
python3-setuptools \
build-essential
rm -rf /var/lib/apt/lists/*

# Create and activate a virtual environment for Python packages.
python3 -m venv /opt/venv
export PATH="/opt/venv/bin:$PATH"

echo -e "\n========== Installing ASE =========="
git clone --quiet --depth=1 --single-branch -b master https://gitlab.com/ase/ase.git /opt/ase
cd /opt/ase/
Expand Down

0 comments on commit e2aab9b

Please sign in to comment.