Project

General

Profile

Statistics
| Branch: | Revision:

root / env / create-env @ master

History | View | Annotate | Download (233 Bytes)

1
#!/bin/bash
2

    
3
if [ -d ~/.env/tooltron ]; then
4
  echo ~/.env/tooltron already exists';' just running update.
5
else
6
  mkdir -p ~/.env
7
  virtualenv ~/.env/tooltron
8
fi
9

    
10
cd "$(dirname "$0")"
11
source enter-env
12
pip install -r requirements.txt