Starting a Virtual environment in python: Difference between revisions
From Cramsession
Jump to navigationJump to search
✍️ Verified Author: Mflavell • Click to view professional profile & credentials
(Created page with "Computer Notes > Python > Starting a Virtual environment in python") |
No edit summary |
||
| Line 1: | Line 1: | ||
[[Computer Notes]] > [[Python]] > [[Starting a Virtual environment in python]] | [[Computer Notes]] > [[Python]] > [[Starting a Virtual environment in python]] | ||
python3 -m venv webdesk | |||
source webdesk/bin/activate | |||
cd to folder | |||
pip install -r requirements.txt | |||
python3 ''app'' | |||
Revision as of 00:39, 12 November 2025
Computer Notes > Python > Starting a Virtual environment in python
python3 -m venv webdesk
source webdesk/bin/activate
cd to folder
pip install -r requirements.txt
python3 app