Created
December 24, 2022 17:16
-
-
Save abarrak/13734cc8f72dc087fcd8eec8865af632 to your computer and use it in GitHub Desktop.
Python Workspace
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir my_project && cd my_project | |
python3.9 -m venv venv | |
. venv/bin/activate | |
echo "flask==2.22" > requirements.txt | |
pip3.9 install -r requirements.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment