venv update

This commit is contained in:
LeLawnGames
2025-01-15 22:37:23 -05:00
parent c69c9a86bd
commit f7f7822a55
+8 -8
View File
@@ -1,21 +1,21 @@
To create a new Virtual Environment (venv) run the following in the root folder of your project To create a new Virtual Environment (venv) run the following in the root folder of your project
''' ```bash
% python3 -m venv venv % python3 -m venv venv
''' ```
To activate the venv To activate the venv
''' ```bash
% source venv/bin/activate % source venv/bin/activate
''' ```
Your terminal should then look like this Your terminal should then look like this
''' ```bash
% (venv) jonas@bendorama % % (venv) jonas@bendorama %
''' ```
If it doesn't make sure you run the source command before working on your project. If it doesn't make sure you run the source command before working on your project.
To deactivate the venv just run To deactivate the venv just run
''' ```bash
% deactivate % deactivate
''' ```