尝试从源代码安装
git clone https://github.com/tomchristie/django-rest-framework.git
cd django-rest-framework
setup.py install
settings.py
INSTALLED_APPS = (
...
'rest_framework.authtoken',
'rest_framework',
...
)
尝试迁移
manage.py migrate
WindowsError: [Error 3] The system cannot find the path specified:
'C:\\Python27\\lib\\site-packages\\djangorestframework-3.0.0-py2.7.egg\\rest_framework\\authtoken\\migrations/*.*'
问题出在这里?为什么这是一个Windows错误?
(rest_framework正在迁移......)
感谢。
答案 0 :(得分:1)
我最终将我克隆的实际文件夹复制到c:\Python27\lin\sitepackages
并将其重命名为...*.egg
。它奏效了。