私はDjangoの初心者で、サーバーにpipをインストールしてこれを使用しています。
https://github.com/django-import-export/django-import-export
私のpythonバージョンは2.7です。
これは m PYTHONPATHです。
-bash-4.2$ echo $PYTHONPATH
/home/khantthulinn/lib/python2.7:/home/khantthulinn/.local/lib/python2.7/site-packages
これは私のsys.pathです。
/home/khantthulinn/webapps/mmspeaker/lib/python2.7/Django-1.8.14-py2.7.egg
/home/khantthulinn/webapps/mmspeaker/lib/python2.7
/home/khantthulinn/webapps/mmspeaker/lib/python2.7/site-packages
/home/khantthulinn/lib/python2.7/pip-8.1.2-py2.7.egg
/home/khantthulinn/lib/python2.7
/home/khantthulinn/webapps/mmspeaker/myproject
/usr/lib64/python27.zip
/usr/lib64/python2.7
/usr/lib64/python2.7/plat-linux2
/usr/lib64/python2.7/lib-tk
/usr/lib64/python2.7/lib-old
/usr/lib64/python2.7/lib-dynload
/home/khantthulinn/.local/lib/python2.7/site-packages
/usr/lib64/python2.7/site-packages
/usr/lib64/python2.7/site-packages/PIL
/usr/lib64/python2.7/site-packages/geos
/usr/lib/python2.7/site-packages
私は実際にここでimport_exportをこのように見ました。
しかし、このようにsettings.pyにインポートすると、 import_exportという名前のモジュールがないと表示されます。
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'rest_framework',
'provider',
'provider.oauth2',
'push_notifications',
'import_export',
)
どうしよう?