Skip to content
Snippets Groups Projects
Commit d090b186 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

Former-commit-id: 3381dbfb
parents 34703d2c 58ba6b83
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