Use virtualenv to create isolated Python environments. Run the following command in your shell to install virtualenv
pip install virtualenv
create an isolated environment with the following command:
mkdir /venvs cd /venvs virtualenv django-blog
Continue reading “[Django – Blog Application] – P.1 – Setup environment”