(20241010) With some shell scripts.

This commit is contained in:
2024-10-10 12:06:13 +05:30
parent e858118467
commit 4445bceac0
11 changed files with 127 additions and 5 deletions
+20
View File
@@ -0,0 +1,20 @@
# We create a Virtual Environment.
# The format is:
# python<version> -m venv <virtual_env_name>
echo "Making a virtual environment (if needed)"
python3 -m venv .venv
# Next we activate the newly created Virtual Environment.
echo "Activating the virtual environment."
source .venv/bin/activate
# Now we install the requirements.
echo "Installing pending requirements."
pip3 install -r requirements.txt
# Now we deactivate the Virtual Environment.
echo "Deactivation the virtual environment."
deactivate
# Setup Done.
echo "Attempt done. Exiting."