LRGASP / lrgasp-submissions

Definition and validators for LRGASP submissions
MIT License
8 stars 2 forks source link

python virtual environment for submission/validation tools #34

Closed julienlag closed 2 years ago

julienlag commented 2 years ago

Maybe it's me, but in https://lrgasp.github.io/lrgasp-submissions/docs/submission-tools.html, the command:

python3 -m virtualenv lrgasp-env

didn't work for me.

python3 -m venv lrgasp-env did.

diekhans commented 2 years ago

virtualenv needs to be installed separately while venv is part of python3. This is described in:

https://stackoverflow.com/questions/44091886/whats-the-difference-between-virtualenv-and-m-venv-in-creating-virtual-env/44091914

The doc has been updated to indicated that virtualenv needs to have been installed or that venv can be used as a much slower option.