apptainer/lib/install_trexio_python.sh

18 lines
298 B
Bash
Raw Normal View History

2024-04-11 14:33:16 +02:00
#!/bin/bash -e
2024-04-11 11:23:49 +02:00
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
2024-04-11 14:33:16 +02:00
ln -s /usr/bin/python3 /usr/bin/python
2024-04-11 11:23:49 +02:00
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