This commit is contained in:
LeLawnGames
2025-01-15 22:34:01 -05:00
parent 9c43b0902b
commit c69c9a86bd
3 changed files with 63 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
To create a new Virtual Environment (venv) run the following in the root folder of your project
'''
% python3 -m venv venv
'''
To activate the venv
'''
% source venv/bin/activate
'''
Your terminal should then look like this
'''
% (venv) jonas@bendorama %
'''
If it doesn't make sure you run the source command before working on your project.
To deactivate the venv just run
'''
% deactivate
'''