This commit is contained in:
2023-08-17 22:53:17 +04:00
parent a824a23d9e
commit 9687f2da01
10 changed files with 23 additions and 10 deletions

3
shell/1b-Install virtualenv.sh Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
pip install virtualenv
python3 -m venv env

9
shell/1c-InstallPackets.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
# Активируем виртуальное окружение
source env/bin/activate
pip install --upgrade pip
pip install -r r.txt
# Отключаем виртуальное окружение
deactivate

3
shell/r.txt Normal file
View File

@@ -0,0 +1,3 @@
Flask
Flask-Compress
gunicorn