back to tutorials

Setting up Python virtual environment (for a Django Project)

For this tutorial I will assume you have a little experience working with the command line tools like “Terminal”. If you don’t I promise to make a post or two about that, meanwhile you can check those two out:

Setting up the environment

The first steps is here for people who don’t yet have a folder where they keep all their projects.

1. In the Terminal or Command Prompt (cmd) create a directory (folder) where you will keep your projects and websites.

mkdir sites
cd sites

mkdir will create a new directory and cd will move into into that directory. You can call your folder whatever you want.

2. Creating a project folder

Once in the sites directory you will need run mkdir again to make a folder specifically for your project

mkdir {projectname}
cd {projectname}

3. Setting up the environment

Before we initiate a django project we need to setup a python virtual environment. This will make sure that whatever machine we are working with (Mac vs. Windows, for example) the website will work by setting up the same packages and libraries.

Generally, having a virtual environment for each one of your projects, whether Web Dev, Data Science or General Programming, is now a standard. For one, this allows other people to help you with you projects and generally makes eveything easier in the future.

For this step you need to have Python installed. I am not going to go over the installation process and will assume you have a working version of Python 3.6 or above. To create a virtual environment python has a built-in package venv.

# If you have multiple python versions on you computer
python3 -m venv venv

# If you have python 3.6+ installed only
python -m venv venv

Here the first venv refers to the program we are running. The second venv is referring to the name I gave my virtual environment. So, instead of a second venv you can type in whatever you want. I find the word venv pretty easy to rememeber and to type up, so that’s how I usually call my virtual environments.

Let the prgoram run. Congrats you now have created a virtual environment! You can check that everything worked by checking the contents of the folder. You can do that by navigating in Finder or Windows Explorer or even better just by typing ls to the command prompt, this will list out all the directories in your project folder.

All there is left to do is to activate the environment to start the working process.

On Mac to activate and deactivate the virtual environment you would use the following command:

# to activate
source venv/bin/activate

# to deactivate
deactivate

On Windows:

# to activate
.\venv\scripts\activate.bat

# to deactivate
deactivate

When your virtual environemnt is active you will see the name of the virtual environment within bracket to the left of the command line. Like so:

4. Create a Django project

Finally, we can create the project. Once you make sure your venv is activated, all you have to do is:

# to install django within your virtual environment
pip install django

# to actually create a project
django-admin startproject {name of your peroject} .

Note the dot in the end of the command. You actually need to add it too. This will make sure that the project is created within the directory you have already created.

One last step:

python manage.py runserver

This will start server with your Django project, If you go to http://127.0.0.1:8000 in your browser, you will see a welcome to Django screen.

Congrats! You can now develop your site with Django freely, which is a whole another topic of discussion.

If you have any questions please let me know at one of the social links on the top left.

Share

Tuesday Letter

Consider signing up for my personal newsletter. I will share the most interesting articles and resources I've encountered during the week.