ImportError:在 Heroku 上部署时没有名为“解耦”的模块
Posted
技术标签:
【中文标题】ImportError:在 Heroku 上部署时没有名为“解耦”的模块【英文标题】:ImportError: No module named 'decouple' while deploying on Heroku 【发布时间】:2018-09-07 13:00:57 【问题描述】:我试图从 heroku cli 在 heroku 上部署我的 django 项目。所以我创建了一个应用程序,然后从项目目录运行git push heroku master
。然后我得到了错误:
remote: -----> $ python manage.py collectstatic --noinput
remote: Traceback (most recent call last):
remote: File "manage.py", line 15, in <module>
remote: execute_from_command_line(sys.argv)
remote: File "/app/.heroku/python/lib/python3.5/site-packages/django/core/management/__init__.py", line 371, in execute_from_command_line
remote: utility.execute()
remote: File "/app/.heroku/python/lib/python3.5/site-packages/django/core/management/__init__.py", line 317, in execute
remote: settings.INSTALLED_APPS
remote: File "/app/.heroku/python/lib/python3.5/site-packages/django/conf/__init__.py", line 56, in __getattr__
remote: self._setup(name)
remote: File "/app/.heroku/python/lib/python3.5/site-packages/django/conf/__init__.py", line 43, in _setup remote: self._wrapped = Settings(settings_module)
remote: File "/app/.heroku/python/lib/python3.5/site-packages/django/conf/__init__.py", line 106, in __init__
remote: mod = importlib.import_module(self.SETTINGS_MODULE)
remote: File "/app/.heroku/python/lib/python3.5/importlib/__init__.py", line 126, in import_module
remote: return _bootstrap._gcd_import(name[level:], package, level)
remote: File "<frozen importlib._bootstrap>", line 986, in _gcd_import
remote: File "<frozen importlib._bootstrap>", line 969, in _find_and_load
remote: File "<frozen importlib._bootstrap>", line 958, in
_find_and_load_unlocked
remote: File "<frozen importlib._bootstrap>", line 673, in _load_unlocked
remote: File "<frozen importlib._bootstrap_external>", line 665, in exec_module
remote: File "<frozen importlib._bootstrap>", line 222, in _call_with_frames_removed
remote: File "/tmp/build_93c58c906371cd0110470b6bb3ccecc1/funderpreneur/settings.py", line 15, in <module>
remote: from decouple import Csv, config
remote: ImportError: No module named 'decouple'
remote:
remote: ! Error while running '$ python manage.py collectstatic --noinput'.
remote: See traceback above for details.
remote:
remote: You may need to update application code to resolve this error.
remote: Or, you can disable collectstatic for this application: remote:
remote: $ heroku config:set DISABLE_COLLECTSTATIC=1
remote:
remote: https://devcenter.heroku.com/articles/django-assets
remote: ! Push rejected, failed to compile Python app.
remote:
remote: ! Push failed
如前所述,我跑了heroku config:set DISABLE_COLLECTSTATIC=1
。
然后将代码推送到存储库中。然后我跑了heroku run python3 manage.py migrate
。但我仍然得到同样的错误说:
文件“/app/funderpreneur/settings.py”,第 15 行,在
从解耦导入 Csv,配置 ImportError:没有名为“解耦”的模块
但我在本地为 python 2 和 3 安装了 python-decouple。而且整个项目在 django 版本 2 和 python 版本 3.5.2 上运行。但是在runtime.txt
中我设置了python-3.6.4
。我有requirements.txt
,decouple
已经在那里了。
在我的settings.py
我有
import django_heroku
django_heroku.settings(locals())
但我遇到了错误,所以我对它们进行了评论。还是报错。
出了什么问题或者我做错了什么?
编辑
我的requirements.txt
:
dj-database-url
django
gunicorn
psycopg2
whitenoise
dj-static
Unipath
python-decouple
Pillow
Markdown
bleach
python-decouple
django-material
raven
django-debug-toolbar
django-tables2
django-phonenumber-field
django-guardian
django-notifications-hq
djangorestframework
matplotlib
numpy
seaborn
pandas
django-heroku
结构是:
.
├── core
│ ├── admin.py
│ ├── apps.py
│ ├── __init__.py
│ ├── migrations
│ │ ├── __init__.py
│ │ └── __pycache__
│ │ └── __init__.cpython-35.pyc
│ ├── models.py
│ ├── __pycache__
│ │ ├── admin.cpython-35.pyc
│ │ ├── __init__.cpython-35.pyc
│ │ ├── models.cpython-35.pyc
│ │ └── views.cpython-35.pyc
│ ├── templates
│ │ └── core
│ │ ├── base.html
│ │ ├── footer.html
│ │ ├── index.html
│ │ ├── login.html
│ │ ├── navbar.html
│ │ ├── nav.html
│ │ ├── partial_settings_menu.html
│ │ ├── password.html
│ │ ├── picture.html
│ │ ├── profile.html
│ │ └── registration.html
│ ├── tests.py
│ ├── urls.py
│ └── views.py
├── db.sqlite3
├── funderpreneur
│ ├── fonts
│ │ ├── material-design-icons
│ │ │ ├── Material-Design-Iconsd41d.eot
│ │ │ ├── Material-Design-Icons.svg
│ │ │ ├── Material-Design-Icons.ttf
│ │ │ └── Material-Design-Icons.woff
│ │ └── roboto
│ │ ├── Roboto-Bold.ttf
│ │ ├── Roboto-Bold.woff
│ │ ├── Roboto-Light.ttf
│ │ ├── Roboto-Light.woff
│ │ ├── Roboto-Medium.ttf
│ │ ├── Roboto-Medium.woff
│ │ ├── Roboto-Regular.ttf
│ │ ├── Roboto-Regular.woff
│ │ ├── Roboto-Thin.ttf
│ │ └── Roboto-Thin.woff
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-35.pyc
│ │ ├── settings.cpython-35.pyc
│ │ ├── urls.cpython-35.pyc
│ │ └── wsgi.cpython-35.pyc
│ ├── settings.py
│ ├── static
│ │ ├── css
│ │ │ ├── account-settings.css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── custom-materialize.css
│ │ │ ├── footer.css
│ │ │ ├── high-rise-building.jpg
│ │ │ ├── materialize.css
│ │ │ ├── navbar.css
│ │ │ ├── navbar-top-fixed.css
│ │ │ ├── style2.css
│ │ │ └── style.css
│ │ ├── humans.txt
│ │ ├── img
│ │ │ └── buet_logo.png
│ │ └── js
│ │ ├── bootstrap.min.js
│ │ ├── circular-progress-jquery.js
│ │ ├── jquery-1.11.2.min.js
│ │ ├── jquery-slim.min.js
│ │ ├── jquery.waypoints.min.js
│ │ ├── materialize.js
│ │ ├── popper.min.js
│ │ ├── profile-validation.js
│ │ └── registration-validation.js
│ ├── urls.py
│ └── wsgi.py
├── manage.py
├── media
├── Pipfile
├── Procfile
├── README.md
├── requirements.txt
├── runtime.txt
└── staticfiles
【问题讨论】:
请显示实际的requirements.txt,以及你的项目的布局。 我已经编辑了我的问题。 【参考方案1】:我认为您还没有将包名称从requirements.txt
写入Pipfile
波纹管[packages]
部分。您应该以这种格式添加包-
package_name = "version"
【讨论】:
我遇到了和 OP 一样的问题,你能扩展一下这个答案吗?[packages]
部分应该包含来自requirements.txt
的所有包吗?我尝试在[packages]
中包含python-decouple = "==3.1"
无济于事。目前,我的[packages]
仅包含django = "==2.1.2"
。【参考方案2】:
我也遇到过这个问题,不过加了
python-decouple==3.1
进入requirements.txt
文件,我成功了!
【讨论】:
【参考方案3】:我也遇到了这个问题,并通过从我的环境和本地删除所有包(从本地和解耦中删除了 2x python-decouple)来解决。然后,我再次安装了 python-decouple (3.3)。
【讨论】:
【参考方案4】:我遇到了同样的问题,我是 django 的新手。更新requirements.txt
后上述步骤无效,直到我切换env
。
source env/Scripts/activate
pip install -r requirements.txt
py manage.py runserver
【讨论】:
【参考方案5】:我遇到了类似的错误,原来你必须在虚拟环境中安装模块。首先,启动虚拟环境,然后安装模块(在虚拟环境中)。现在尝试启动你的服务器,问题应该解决了 在某些情况下,可能安装了“解耦”模块,请在启动服务器之前卸载该模块,因为它会导致错误 pythonpython-decoupledjango
【讨论】:
【参考方案6】:您需要在设备上安装解耦模块。独立于版本更改的事件
尝试:
pip install python-decouple
没有 requirements.txt 文件
【讨论】:
以上是关于ImportError:在 Heroku 上部署时没有名为“解耦”的模块的主要内容,如果未能解决你的问题,请参考以下文章
在 Heroku 但不是在本地出现错误“ImportError: No module named”
在已部署的 Flask 应用程序 (Heroku) 上使用 OpenCV
Django & Heroku - ImportError: No module named gettingstarted.wsgi
在 Heroku 上安装 Buildpack 后的 Python ImportError
Heroku 上的 Gunicorn 'ImportError: No module named app.wsgiapp'