我在Windows系统上并关注Install Django CMS tutorial。根据它,我用Python 3.4.3设置了新的虚拟环境,用pip和run命令安装了Djangocms-installer
(env) PS D:\Skyro\Documents\djangocms-project\sites> djangocms -p . mysite
当我回答安装程序的问题时,我收到了输出错误消息:
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
我不明白什么是错的,如果你解释一下它是什么意思以及如何解决它,我会很高兴。
pip install --upgrade pip
(6.0.8 - > 6.1.1)pip install --upgrade setuptools
(12.0.5 - > 15.1)pip install virtualenv
virtualenv env
.\env\Scripts\activate
pip install djangocms-installer
djangocms -p . mysite
也许我也应该安装Django,但是现在安装Django(1.8或1.7)并不能解决这个错误。
答案 0 :(得分:1)
显然,当前的django-select2-py3包存在问题。 官方django-select2它也是处理python 3的好方法,但尚未发布官方软件包。 您使用的是哪个版本的安装程序以及您在安装程序向导中选择了哪些选项?