github.com/oinume/lekcije@v0.0.0-20231017100347-5b4c5eb6ab24/setup-python.sh (about)

     1  #!/bin/sh
     2  
     3  if [ ! -d .venv ]; then
     4      virtualenv --distribute --python /usr/local/bin/python3.6 .venv
     5      . .venv/bin/activate
     6      pip install -r requirements.txt
     7  fi