Explorar el Código

Created a bash script that instantiates the venv with python3

master
Wouter Horlings hace 6 años
padre
commit
ae4de2092b
Se han modificado 1 ficheros con 9 adiciones y 0 borrados
  1. +9
    -0
      setup.sh

+ 9
- 0
setup.sh Ver fichero

@@ -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



Cargando…
Cancelar
Guardar