Changed SH script to use virtual environments
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -55,4 +55,5 @@ build/main/*
|
||||
TSH_old.exe
|
||||
main.spec
|
||||
*.tmp
|
||||
logs/*
|
||||
logs/*
|
||||
Pipfile*
|
||||
|
||||
5
TSH.sh
5
TSH.sh
@@ -1,4 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
python3 -m pip install -r dependencies/requirements.txt
|
||||
python3 main.py
|
||||
python3 -m pip install pipenv
|
||||
python3 -m pipenv install -r dependencies/requirements.txt
|
||||
python3 -m pipenv run python main.py
|
||||
@@ -1 +1,4 @@
|
||||
python.exe main.py
|
||||
@echo off
|
||||
python.exe -m pip install pipenv
|
||||
python.exe -m pipenv install -r "dependencies/requirements.txt"
|
||||
python.exe -m pipenv run python "./main.py"
|
||||
|
||||
Reference in New Issue
Block a user