Starting a Virtual environment in python: Difference between revisions

From Cramsession
Jump to navigationJump to search
✍️ Verified Author: MflavellClick to view professional profile & credentials
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
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''
when done
deactivate ''app''

Latest revision as of 01:45, 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

when done

deactivate app