- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图从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
。但是仍然有同样的错误说:
File "/app/funderpreneur/settings.py", line 15, in
from decouple import Csv, config ImportError: No module named 'decouple'
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
strucutre是:
.
├── 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
写入Pipfile
下方的[packages]
部分。您应该以这种格式添加软件包-
package_name = "version"
关于python-3.x - ImportError : No module named 'decouple' while deploying on Heroku,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49541343/
如何根据可用性使用有时像这样导入的不同模块运行相同的测试: try: from gevent.local import local except ImportError
我在使用 Nose 运行我的单元测试时遇到了一个ImportError,而当我单独运行它时却没有。此处提及的所有文件均可在 http://gist.github.com/395541# 中查看. 如果
当我在一个Python程序中导入熊猫时,我收到以下错误。这里也是程序:
我想下载Spacy,但终端的打字扩展版本降低了:。接下来,我想安装语言包python-m spacy Download en,但出现另一个错误:。我当前的python版本是3.7,我应该更新它吗?或者
我想下载Spacy,但终端的打字扩展版本降低了:。接下来,我想安装语言包python-m spacy Download en,但出现另一个错误:。我当前的python版本是3.7,我应该更新它吗?或者
Traceback (most recent call last): File "c:\users\sathish.pv\appdata\local\continuum\anaconda3\lib
我已经编写了一个名为coinview.py的脚本,它可以在Linux上运行。当我尝试以SYSTEM D身份运行它时,出现错误。错误:ImportError:没有名为‘Schedule’的模块。。我用的
这是我的错误信息 Traceback (most recent call last): File "app.py", line 9, in from forms import Conta
我正在使用 Mac OS x 10.10.3 Yosemite 和 Python 2.7.9 |Anaconda 2.2.0 (x86_64) 来处理很多 python 的东西。我正在使用 Eclip
我是 Django 新手,正在创建我的第一个项目。一切正常,突然出现 ImportError('win32 only') ImportError: win32.在网上搜索了很多,但没有找到解决方案。
回复 a similar question建议我不能以独立模式导入 Shell 的东西。但是,据我了解,St 是一个用 C 编写的单独库。但我仍然无法在 gjs 中导入它...... IE。 $ gj
好吧,我被这个难住了。我环顾四周,但找不到任何东西,也不知道如何调试它。基本上,python 在我未导入任何内容的代码行中抛出一个 ImportError。我有一个相当大的模块 ICgen,其中包含模
我正在调用 psycopg2 import psycopg2 我得到标准错误 ImportError: No module named psycopg2 我用 macports 安装了我的副本,所以我
我已经使用 brew 安装了 opencv3,但是在执行 import cv2 时遇到了 importError >>> import cv2 Traceback (most recent call
安装numpy表示已经是最新版本,出现在pip list返回的列表中也是,但是导入它会产生导入错误(并且这个问题对于每个其他已安装的模块都存在,例如 scipy、matplotlib)。 系统有什么问
我有一个 python 脚本,运行时会产生以下错误: import urllib2 File "C:\Python27\lib\urllib2.py", line 94, in import htt
我正在尝试运行 this tutorial在合作实验室。 但是,当我尝试导入一堆模块时: import io import torch from torchtext.utils import down
我在这里遇到了一个特别棘手的问题。 我目前正在做一个个人项目,从一个相对简单的 Riot API 包装器开始,一切都运行良好,直到我想打包它并组织模块。这是该项目的链接:Logistic Analys
我已经通过easy_install.py --upgrade google-api-python-client安装了适用于Python的Google API客户端库。当我运行包含from oauth2
我正在使用 Django,并且我的组应用程序不断收到此错误,我检查了所有导入设置,一切都很好。我的注册和个人资料应用程序运行顺利,但为什么这个应用程序给我一个 ImportError 模型? Trac
我是一名优秀的程序员,十分优秀!