我有一台安装了FreeBSD 10.1的服务器.我想使用uwsgi nginx python3在其上部署一个Django站点并遇到一些问题.
该网站是为python3编写的,我安装了python3.4然后从端口安装了python3和python,配置了nginx并编写了uwsgi ini-file和sock-file.
然后我尝试启动该项目.它在virtualenv中完美地运作.
然后我使用pip3全局安装uwsgi.
但是当我尝试全局启动项目时,我得到了错误
no module named site
这意味着uwsgi使用python2而不是3.
我试图解决这个问题:
>在make.conf中设置DEFAULT_VERSIONS = python = 3.4;
>将$PYTHONHOME和$PYTHONPATH设置为/usr/local/bin / python3;
>将链接/usr/local/bin / python从python2更改为python3;
它没有帮助.
如何强制uwsgi使用python3而不是python2?
解决方法:
设置时
DEFAULT_VERSIONS=python=3.5 python2=2.7 python3=3.5
在/etc/make.conf中,您必须重建使用默认版本Python的端口.
标签:python,freebsd,uwsgi,python3
来源: https://codeday.me/bug/20190813/1647824.html