apptainer/lib/install_trexio_python.sh

16 lines
255 B
Bash
Raw Normal View History

2024-04-11 11:23:49 +02:00
#!/bin/bash
cd /opt
2024-04-11 12:03:02 +02:00
source environment.sh
2024-04-11 11:23:49 +02:00
apt install -y python3 python3-pip git
pip install trexio
git clone --depth=1 https://github.com/TREX-CoE/trexio_tools.git
cd trexio_tools
pip install .
2024-04-11 13:53:52 +02:00
cd ..
2024-04-11 11:23:49 +02:00
2024-04-11 13:53:52 +02:00
rm -rf trexio_tools
2024-04-11 12:03:02 +02:00
apt remove -y git python3-pip