Python Environment Setup

From rbachwiki
Revision as of 15:47, 5 January 2026 by Bacchas (talk | contribs) (Created page with "==Create the Environment with a Unique Name== *Instead of the generic .venv, give your Windows environment a name that clearly identifies it. In your project's root terminal, run: python -m venv .venv_pc *This creates a new folder named .venv_pc in your project. Your existing Mac folder (e.g., .venv or .venv_mac) will remain completely untouched.")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Create the Environment with a Unique Name

  • Instead of the generic .venv, give your Windows environment a name that clearly identifies it. In your project's root terminal, run:

python -m venv .venv_pc

  • This creates a new folder named .venv_pc in your project. Your existing Mac folder (e.g., .venv or .venv_mac) will remain completely untouched.