0
私はserver.apacheエラーログを呼び出します。私はそれを解決しようとするが失敗した。誰でも私を助けてくれることを願っています。どうもありがとうございました。python3.5 Django1.9.6のインストール中にエラーが発生しました:構文エラー
Traceback (most recent call last):
File "/var/www/DjangoBlog/weblog/config/wsgi.py", line 19, in <module>
from django.core.wsgi import get_wsgi_application
File "/usr/local/python3/lib/python3.5/site-packages/django/__init__.py", line 1, in <module>
from django.utils.version import get_version
File "/usr/local/python3/lib/python3.5/site-packages/django/utils/version.py", line 7, in <module>
from django.utils.lru_cache import lru_cache
File "/usr/local/python3/lib/python3.5/site-packages/django/utils/lru_cache.py", line 28
fasttypes = {int, str, frozenset, type(None)},
^
SyntaxError: invalid syntax
これは私のpythonバージョンです。
python -V
Python 3.5.1
これはあなたのmod_wsgiを構成内のPythonパスは、3.5のsite-packagesを指す自体、まだPythonの2.6またはそれ以前のバージョンを使用しているmod_wsgiのように設定しているにもかかわらず、私のhttp.conf
Listen 81
WSGIPythonPath /usr/local/python3/lib/python3.5/site-packages
<VirtualHost *:81>
WSGIScriptAlias//var/www/DjangoBlog/weblog/config/wsgi.py
ErrorLog logs/domain.com-error_log
DirectoryIndex index.html
Alias /static/ /var/www/DjangoBlog/weblog/static/
<Directory /var/www/DjangoBlog/weblog/static>
Order allow,deny
Allow from all
</Directory>
<Directory /var/www/DjangoBlog/weblog>
<Files wsgi.py>
Order allow,deny
Allow from all
</Files>
</Directory>
</VirtualHost>
modバージョンmod_wsgi-4.5.7。 –
はい。そうです。私はあなたを愛しています。私はmod_wsgiを取り替えました。 –