Remove specific version

pull/137/head
evv 2023-03-08 22:20:59 +07:00 committed by GitHub
parent a8624941e9
commit aecb16c8f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -23,12 +23,12 @@ fi
# Check if the desired environment exists
if [ ! -d "server_env" ]; then
# Create the environment if it doesn't exist
python3 -m venv server_env
python -m venv server_env
source ./server_env/bin/activate
python3 -m pip install -r requirements.txt
python -m pip install -r requirements.txt
else
source ./server_env/bin/activate
fi
cd ./server/python_server
python3 -m uvicorn serverMain:app --reload
python -m uvicorn serverMain:app --reload