So I have looked around at a lot of questions similar to mine, however I couldn't find a concrete answer. My comp specifications are Windows 7 64-bit.
My problem is as such:
1) I installed virtualenv using pip:
pip install virtualenv
Run Code Online (Sandbox Code Playgroud)
2) After that I created and activated a new environment:
path/virtualenv env
...
path/to/env/Scripts/activate
Run Code Online (Sandbox Code Playgroud)
3) While running the new environment, I installed django:
(env) path/pip install django
Run Code Online (Sandbox Code Playgroud)
4) After installing successfully, I am ready to make a project. However, …