Sfoglia il codice sorgente

Created a bash script that instantiates the venv with python3

master
Wouter Horlings 6 anni fa
parent
commit
ae4de2092b
1 ha cambiato i file con 9 aggiunte e 0 eliminazioni
  1. +9
    -0
      setup.sh

+ 9
- 0
setup.sh Vedi 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



Loading…
Annulla
Salva