This website works better with JavaScript.
Home
Explore
Help
Sign In
master-thesis
/
mam
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Created a bash script that instantiates the venv with python3
master
Wouter Horlings
6 years ago
parent
48deab434f
commit
ae4de2092b
1 changed files
with
9 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+9
-0
setup.sh
+ 9
- 0
setup.sh
View File
@@ -0,0 +1,9 @@
#!/bin/bash
# Install todoist-python
python3 -m venv --system-site-packages .venv
source .venv/bin/activate
pip install -r requirements.txt
deactivate
Write
Preview
Loading…
Cancel
Save