I'm on Windows system and following Install Django CMS tutorial. According to it I set up fresh virtual environment with Python 3.4.3, installed Djangocms-installer with pip and run command
(env) PS D:\Skyro\Documents\djangocms-project\sites> djangocms -p . mysite
When I answered installer's questions, I got output with error message:
Creating the project Please wait while I install dependencies Command "python setup.py egg_info" failed with error code 1 in C:\Users\Roman\AppData\Local\Temp\pip-build-0v8y2934\django-select2-py3
I don't understand what is wrong and will be happy if you explain me what does it mean and how to fix it.
My installing process from the beginning:
- install Python 3.4.3 with default path and all options enabled.
pip install --upgrade pip
(6.0.8 -> 6.1.1)pip install --upgrade setuptools
(12.0.5 -> 15.1)pip install virtualenv
- move to work folder and run
virtualenv env
- activate virtual environment with
.\env\Scripts\activate
pip install djangocms-installer
- create and move to empty folder 'sites'
djangocms -p . mysite
- answer installer's questions
- get error message
Maybe I should install Django too, but for now installing Django (1.8 or 1.7) doesn't resolve this error.