add venv setup script
This commit is contained in:
parent
ce4f3c1d60
commit
1115e2eb3b
2 changed files with 10 additions and 1 deletions
|
@ -1 +1,3 @@
|
||||||
# globalforest
|
# GlobalForest
|
||||||
|
|
||||||
|
A map-based social gardening
|
||||||
|
|
7
setup_venv.sh
Executable file
7
setup_venv.sh
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
python3 -m pip install --upgrade --user pip setuptools virtualenv
|
||||||
|
python3 -m virtualenv venv
|
||||||
|
source venv/bin/activate
|
||||||
|
ls
|
||||||
|
pip install -r requierments.txt
|
Loading…
Reference in a new issue