- Tip: Always create a virtual environment for your Django projects to manage dependencies separately.
- Command: Use
python -m venv myenvand activate it withsource myenv/bin/activate(Linux/Mac) ormyenv\Scripts\activate(Windows).
python -m venv myenv and activate it with source myenv/bin/activate (Linux/Mac) or myenv\Scripts\activate (Windows).
Leave a Reply