install_requirements_windows.bat
1.98 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
rem @echo off
SET PYTHON=python
SET VENV_NAME=venv_py35_pyros
REM String variables
SET PRIVATE_DIR_CREATE=-Created 'private' directory
SET PYTHON_NOT_INSTALLED=-Cannot find $PYTHON, please install it or configure PYTHON variable in this script
SET PYTHON_FOUND=-Found %PYTHON% at
SET VENV_CREATE=-Creating virtualenv $VENV_NAME...
SET VENV_ACTIVATE=-Activating virtual environment...
SET DONE=done.
SET UPGRADE_PIP=-Upgrading pip:
SET UPGRADE_WHEEL=-Upgrading wheel:
SET INSTALL_PACKAGES=-Installing required packages from install/REQUIREMENTS.txt
SET CREATE_DATABASE=-Creating database tables :
SET CREATE_SUPERUSER=-Creating database superuser :
SET INSTALLATION_FINISHED=-Installation finished
SET BAD_SQL_CONFIGURATION=-Migration cannot be applied to the database : check your database configuration, or use sqlite instead
REM Getting python location
where %PYTHON% > tmp.txt
IF %ERRORLEVEL% NEQ 0 (
ECHO %PYTHON_NOT_INSTALLED%
del tmp.txt
PAUSE
EXIT
)
SET /p PYTHON_DIR=<tmp.txt
del tmp.txt
ECHO %PYTHON_FOUND% %PYTHON_DIR%
REM Move into the .bat file directory (should be install/)
cd %~dp0%
REM Create a virtual env for Python3
cd ..
if not exist private mkdir private
echo %PRIVATE_DIR_CREATE%
cd private/
REM create a venv_py35_pyros/ folder inside PYROS/private/
echo %VENV_CREATE%
virtualenv %VENV_NAME% -p %PYTHON_DIR%
REM Activate the virtual env
echo %VENV_ACTIVATE%
CALL %VENV_NAME%/Scripts/activate
echo Python location :
where python
REM Upgrade pip
echo %UPGRADE_PIP%
pip install --upgrade pip
REM Upgrade wheel
echo %UPGRADE_WHEEL%
pip install --upgrade wheel
REM Install the needed python packages
echo %INSTALL_PACKAGES%
pip install -r ../install/REQUIREMENTS.txt
REM Create the database and a superuser pyros
cd ../src/
echo %CREATE_DATABASE%
python manage.py makemigrations
python manage.py migrate
IF %ERRORLEVEL% NEQ 0 (
echo %BAD_SQL_CONFIGURATION%
pause
exit
)
echo %CREATE_SUPERUSER%
python manage.py createsuperuser
echo %INSTALLATION_FINISHED%
PAUSE
EXIT