Skip to content

Instantly share code, notes, and snippets.

@ashutoshsahoo
Created February 5, 2022 04:15
Show Gist options
  • Save ashutoshsahoo/e7f24381c7b060f704d9f661a6ae482e to your computer and use it in GitHub Desktop.
Save ashutoshsahoo/e7f24381c7b060f704d9f661a6ae482e to your computer and use it in GitHub Desktop.
Set up a new Python project
  • Create Folder and Virtual environment
mkdir myproject
cd myproject
python -m venv venv
  • Activate Virtual Environment
./venv/Scripts/activate
  • Deactivate Virtual Environment
deactivate
  • Install dependencies
 pip install -r requirements.txt
  • Export dependencies list
pip freeze > requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment