Python Environment Setup
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_pcin your project. Your existing Mac folder (e.g., .venv or .venv_mac) will remain completely untouched.