DjangoでOpenCVが動かないと思った時の対処法
Background
try ~ except
でもエラーが検知しなかったので、OpenCVとhttpd(Apache)が原因じゃないかと思って調べたらそうだったという話です。
Environment
- Python 3.6.8
- Django 2.0
- Apache 2.4.39
Method
mod_wsgi の設定で1行追加するだけです。
WSGIApplicationGroup %{GLOBAL}
Supplement
他のmod_wsgiはこんな感じ
LoadModule wsgi_module /usr/local/lib/python3.6/site-packages/mod_wsgi/server/mod_wsgi-py36.cpython-36m-x86_64-linux-gnu.so
WSGIPythonPath /home/path_to/django_project/:/usr/local/lib/python3.6/site-packages/:/usr/local/lib/python3.6/
WSGIScriptAlias /XXXXX /home/path_to/django_project/setting_folder/wsgi.py
<Directory /home/path_to/django_project/setting_folder/>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
Alias /static/ /home/path_to/django_project/static/
<Directory /home/path_to/django_project/static/>
Require all granted
</Directory>
Reference
django apache mod-wsgi hangs on importing a python module from .so file
OpenCV imread hanging when called from a web request
Django & Apahce2 アプリケーションにアクセスしても response が来ない。
Author And Source
この問題について(DjangoでOpenCVが動かないと思った時の対処法), 我々は、より多くの情報をここで見つけました https://qiita.com/satsukiya/items/cb934d6c1e4cf9031ab7著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .