-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup
More file actions
26 lines (25 loc) · 963 Bytes
/
setup
File metadata and controls
26 lines (25 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash
#virtualenv venv
#source venv/bin/activate
#sudo -H pip install --allow-all-external -r system/dependencies.txt
echo ""
echo "USED PYLOT? Use the same virtualenv you made before!"
echo "Otherwise: a) read the readme, and b) checkout python's virtualenv manager and virtualenv"
echo ""
echo "<<< HAVE A MAC >>>"
echo ""
echo "Don't have an PYLOT virtualenv? Run these commands:"
echo "virtualenv pylotVenv"
echo "source pylotVenv/bin/activate"
echo "pip install -r system/dependencies.txt"
echo ""
echo ""
echo "<<< HAVE A PC >>>"
echo ""
echo "Don't have a PYLOT virtualenv? Run these commands: (in a bash terminal)"
echo "python -m virtualenv pylotVenv"
echo "source pylotVenv/scripts/activate"
echo "pip install -r system/dependenciesPC.txt"
echo ""
echo "PC's : GIT BASH USES A CACHE - IF YOUR PRINT STATEMENTS DON'T WORK TRY conemu TERMINAL OR SIMILAR"
echo "DEPLOYMENT: use pip install -r system/dependenciesPC.txt AND then pip install uwsgi"