我正在尝试在服务器上部署我的 Python Django 项目(使用 Nginx)。 但是当我收集静态数据时
python manage.py collectstatics
我收到下一个错误:
无法导入 Django。您确定它已安装并且“ 导入错误:无法导入 Django。您确定它已安装并在您的 PYTHONPATH 环境变量中可用吗?您是否忘记激活虚拟环境?
但是我有 Django 并“打开”了 virtualenv
点冻结:
certifi==2017.4.17
chardet==3.0.4
command-not-found==0.3
Django==1.10.7
django-appconf==1.0.2
django-ckeditor==5.3.0
django-haystack==2.6.1
django-imagekit==4.0.1
django-js-asset==0.1.1
django-material==1.0.0
django-parler==1.8
flickrapi==2.3
gunicorn==19.7.1
idna==2.5
language-selector==0.1
oauthlib==2.0.2
olefile==0.44
pilkit==2.0
Pillow==4.2.1
pycurl==7.43.0
pygobject==3.20.0
python-apt==1.1.0b1
python-debian==0.1.27
python-systemd==231
pytz==2017.2
requests==2.18.1
requests-oauthlib==0.8.0
requests-toolbelt==0.8.0
requirements==0.1
six==1.10.0
solid-i18n==1.4.1
ssh-import-id==5.5
ufw==0.35
unattended-upgrades==0.1
urllib3==1.21.1
virtualenv==15.0.1
Whoosh==2.7.4
请检查 nginx 配置文件中的
static
路径。
location /static/ {
alias <static directory path>;
}
它应该与setting.py相同
SETTING_ROOT
路径
STATIC_ROOT = '<static directory path>'
访问这个博客,它肯定会有帮助。 博客链接。 它提到了如何在 Nginx 和 Gunicorn 上使用静态内容部署 Django。