Hello, i have some issues that is occured while i was installing Django on my Windows 10.
I'm new in using Django framework and also python on windows.
To the article:
Install Python
I installed python as it was said:
Downloaded python 3.5.1 for windows.
Installed using option: create system variable.
Checked version.
Install virtualenv and virtualenvwrapper¶
Then i tried to instal virtualenv and virtualenvwrapper as it is said:
pip install virtualenvwrapper-win
but the command freezes (or hangs) widows command prompt.
After some search i found "python -m pip install virtualenv" and "python -m pip install virtualenvwrapper" that worked well.
And now i'm stuck.
mkvirtualenv myproject is not working.
As i investigated: mkvirtualenv is a batch file, that executes virtualenv.exe in python's Script folder.
This executable file hangs my command prompt, every time i type mkvirtualenv myproject or executing "virtualenv.exe myproject" directly.
I don't know what to do, but what i do know - those pip.exe, virtualenv.exe and other .exe files in %PYTHONHOME%\Scripts are hanging my commandprompt.
If Anyone has any ideas with my problem, please help me.