Randy Paffenroth commited on
Commit
8e339af
·
1 Parent(s): 007930a

Better setup for python

Browse files
Files changed (2) hide show
  1. .gitignore +1 -0
  2. setup_venv.sh +5 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ venv/
setup_venv.sh ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ #! /bin/bash
2
+
3
+ rm -rf venv
4
+ python3 -m venv venv
5
+ venv/bin/pip install -r requirements.txt