Install Django
Comficker
Posted on October 19, 2022
It’s usually best to install Django to a virtual environment, where your project can be isolated from your other Python projects. Most commands assume you’re working in an active virtual environment.
Create a virtual environment
$ python –m venv v
Activate the environment (Linux and OS X)
$ source v/bin/activate
Activate the environment (Windows)
venv\Scripts\activate
Install Django to the active environment
(venv)$ pip install Django
💖 💪 🙅 🚩
Comficker
Posted on October 19, 2022
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
webdev Understanding HTTP, Cookies, Email Protocols, and DNS: A Guide to Key Internet Technologies
November 30, 2024