Skip to content
Snippets Groups Projects
Commit 3381dbfb authored by Mattia Mancini's avatar Mattia Mancini
Browse files

Merge branch 'virtualenv' into 'master'

Add requirements.txt file for creating virtual env for running Prefactor

See merge request eosc/prefactor3-cwl!61
parents 5733c884 5bb1d0ca
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
#
# Build a virtual environment that can be used to run the Prefactor pipeline
python3 -m venv venv
. venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade wheel
python3 -m pip install -r requirements.txt
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment