ModuleNotFoundError: 没有名为“debug_toolbar”的模块
ModuleNotFoundError: No module named ‘debug_toolbar’
Python “ModuleNotFoundError: No module named ‘debug_toolbar’” 发生在我们忘记django-debug-toolbar
在导入前安装模块或将其安装在错误的环境中时。
要解决此错误,请通过运行命令安装模块
pip install django-debug-toolbar
。
在项目的根目录中打开终端并安装
django-debug-toolbar
模块。
# 👇️ in a virtual environment or using Python 2 pip install django-debug-toolbar # 👇️ for python 3 (could also be pip3.10 depending on your version) pip3 install django-debug-toolbar # 👇️ if you get permissions error sudo pip3 install django-debug-toolbar pip install django-debug-toolbar --user # 👇️ if you don't have pip in your PATH environment variable python -m pip install django-debug-toolbar # 👇️ for python 3 (could also be pip3.10 depending on your version) python3 -m pip install django-debug-toolbar # 👇️ using py alias (Windows) py -m pip install django-debug-toolbar # 👇️ for Anaconda conda install -c conda-forge django-debug-toolbar # 👇️ for Jupyter Notebook !pip install django-debug-toolbar
安装
django-debug-toolbar包后,确保它django.contrib.staticfiles
在您的INSTALLED_APPS
设置中。
INSTALLED_APPS = [ # ... "django.contrib.staticfiles", # ... "debug_toolbar", ] STATIC_URL = "static/"
ModuleNotFoundError
确保您的TEMPLATES
设置包含DjangoTemplates
设置APP_DIRS
为True
.
TEMPLATES = [ { "BACKEND": "django.template.backends.django.DjangoTemplates", "APP_DIRS": True, # ... } ]
将 django-debug-toolsbar 的 URL 添加到项目的 URLconf。
from django.urls import include, path urlpatterns = [ # ... path('__debug__/', include('debug_toolbar.urls')), ]
最后,将调试工具栏添加到您的MIDDLEWARE
设置中。
MIDDLEWARE = [ # ... "debug_toolbar.middleware.DebugToolbarMiddleware", # ... ]
MIDDLEWARE
列表中包括调试工具栏,但在对响应内容进行编码的中间件之后(例如)。 GZipMiddleware
如果您收到错误
ModuleNotFoundError: No module named ‘django’,请单击链接并按照说明进行操作。
常见错误原因
出现错误的原因有多种:
- 没有
django-debug-toolbar
通过运行安装包
pip install django-debug-toolbar
。 - 在与您正在使用的版本不同的 Python 版本中安装包。
- 全局安装包,而不是在您的虚拟环境中。
- 您的 IDE 运行的 Python 版本不正确。
- 命名您的模块
debug_toolbar.py
,这将影响官方模块。 - 声明一个名为
debug_toolbar
which 的变量将隐藏导入的变量。
如果错误仍然存在,请获取您的 Python 版本并确保您使用正确的 Python 版本安装包。
python --version
例如,我的 Python 版本是3.10.4
,所以我将
django-debug-toolbar
使用pip3.10 install django-debug-toolbar
.
pip3.10 install django-debug-toolbar # 👇️ if you get permissions error use pip3 (NOT pip3.X) sudo pip3 install django-debug-toolbar
请注意,版本号对应于我正在使用的版本pip
。
pip
如果您的计算机上未设置PATH ,请替换pip
为
python3 -m pip
:
# 👇️ make sure to use your version of Python, e.g. 3.10 python3 -m pip install django-debug-toolbar
如果“No module named ‘debug_toolbar’”错误仍然存在,请尝试重新启动您的 IDE 和开发服务器/脚本。
检查包是否安装
您可以
通过运行命令检查是否django-debug-toolbar
安装了软件包pip show django-debug-toolbar
。
# 👇️ check if you have django-debug-toolbar installed pip show django-debug-toolbar # 👇️ if you don't have pip set up in PATH python -m pip show django-debug-toolbar
该pip show django-debug-toolbar
命令将声明该包未安装或显示有关该包的一堆信息,包括该包的安装位置。
确保你的 IDE 使用正确的 Python 版本
如果未安装该包,请确保您的 IDE
使用的是正确版本的 Python。
django-debug-toolbar
包,或者您的 IDE 可能设置为使用不同的版本。例如,在 VSCode 中,您可以按CTRL + Shift + P
或(在 Mac 上为⌘
+ Shift
+ P
)打开命令面板。
然后在字段中键入“Python 选择解释器”。
然后从下拉菜单中选择正确的 python 版本。
如果您收到错误
ModuleNotFoundError: No module named ‘django’,请单击链接并按照说明进行操作。
在虚拟环境中安装包
如果您使用的是虚拟环境,请确保您是
django-debug-toolbar
在虚拟环境中而不是全局安装。
如果您还没有虚拟环境,可以尝试创建一个。
# 👇️ use correct version of Python when creating VENV python3 -m venv venv # 👇️ activate on Unix or MacOS source venv/bin/activate # 👇️ activate on Windows (cmd.exe) venv\Scripts\activate.bat # 👇️ activate on Windows (PowerShell) venv\Scripts\Activate.ps1 # 👇️ install django-debug-toolbar in virtual environment pip install django-debug-toolbar
如果该python3 -m venv venv
命令不起作用,请尝试以下 2 个命令:
python -m venv venv
py -m venv venv
您的虚拟环境将使用用于创建它的 Python 版本。
debug_toolbar.py
debug_toolbar
您也不应该声明一个名为debug_toolbar
as 的变量,这也会影响原始模块。
尝试重新安装包
如果错误未解决,请尝试卸载django-debug-toolbar
软件包,然后再安装。
# 👇️ check if you have django-debug-toolbar installed pip show django-debug-toolbar # 👇️ if you don't have pip set up in PATH python -m pip show django-debug-toolbar # 👇️ uninstall django-debug-toolbar pip uninstall django-debug-toolbar # 👇️ if you don't have pip set up in PATH python -m pip uninstall django-debug-toolbar # 👇️ install django-debug-toolbar pip install django-debug-toolbar # 👇️ if you don't have pip set up in PATH python -m pip install django-debug-toolbar
尝试重新启动您的 IDE 和开发服务器/脚本。
您也可以尝试升级软件包的版本django-debug-toolbar
。
pip install django-debug-toolbar --upgrade # 👇️ if you don't have pip set up in PATH python -m pip install django-debug-toolbar --upgrade
这个用于在以下位置使用虚拟环境 (VENV) Windows
:
这个用于在MacOS
和上使用虚拟环境 (VENV) Linux
: