`
MyEyeOfJava
  • 浏览: 1150933 次
  • 性别: Icon_minigender_1
  • 来自: 北京
博客专栏
7af2d6ca-4fe1-3e9a-be85-3f65f7120bd0
测试开发
浏览量:71118
533896eb-dd7b-3cde-b4d3-cc1ce02c1c14
晨记
浏览量:0
社区版块
存档分类
最新评论

no module named urls

阅读更多

自学到Django框架后台管理的时候,按照http://djangobook.py3k.cn/chapter06/书中所说的配置,缺出现了No module named urls的错误,查阅资料后,找到解决办法:

引用“

你肯定是看了以前的文档,却装的最新版django

admin的打开 新版的做法是打开 urls中如下设定,就好了。

# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

 (r'^admin/(.*)', admin.site.root),

 

settings.py内的文件仍然按照书中所说的配置:

 

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    #'django.contrib.sites',
    #'django.contrib.messages',
     'demo.books',

    # Uncomment the next line to enable the admin:
     'django.contrib.admin',
    # Uncomment the next line to enable admin documentation:
    # 'django.contrib.admindocs',
)

 

问题解决

分享到:
评论

相关推荐

    学习笔记learning_log

    6. **Django URL路由**:在“urls.py”文件中,我们配置URL模式,将特定的URL映射到相应的视图函数。这允许用户通过浏览器访问特定的URL来触发特定的功能。 7. **Django模板系统**:“templates”目录下存放HTML...

    django_mdeditor-0.1.18-py3-none-any.zip

    最后,别忘了在 urls.py 中包含 django_mdeditor 的相关路由,以便它可以正常工作。 总结来说,django_mdeditor 是一个用于 Django 的 Markdown 编辑组件,它简化了在 Django 后台创建和管理 Markdown 内容的过程。...

    tango_with_django_project

    4. **urls.py**:定义项目的URL模式,将HTTP请求映射到相应的视图函数。 5. **wsgi.py**:Web Server Gateway Interface (WSGI) 应用,用于部署项目到生产服务器。 6. **app**(可能命名为 "tango" 或其他):...

    anaconda安装tensorflow、等笔记.docx

    - Scikit-image是Python中的图像处理库,当尝试导入`skimage.io`模块时,如果提示`No module named 'skimage'`,表明这个库未安装。 - 可以通过`pip install scikit-image`命令进行安装。由于下载速度较慢,可以...

    Python Django Web 从入门到实战教程练习题及答案.docx

    否则, Django 将无法正常工作,会报 “ModuleNotFoundError: No module named 'django'” 错误。这是因为 Django 不支持 Python 3.9.0 版本。 知识点3: 实验报告编写要求 在编写实验报告时,需要遵循一定的格式...

    Scrapy使用1

    Scrapy是一个强大的Python爬虫框架,它为...如果在运行爬虫时遇到`No module named win32api`的错误,可以通过`pip install pypiwin32`来安装缺失的库。这样,你就能够顺利地在Windows环境下运行和调试Scrapy爬虫了。

    Django学习笔记

    **注意**: 如果出现 `ModuleNotFoundError: No module named 'django'` 错误, 请确保 Django 已被正确安装且 Python 环境变量已包含 Django。 ##### 2. 创建 Django 项目 **项目名称**: django2 - **CentOS 7**: ...

    Ubuntu 14.04下Django和MySQL环境部署全过程

    如果在安装过程中遇到`ImportError: No module named setuptools`,你可以通过以下命令安装setuptools: ```bash sudo https://bootstrap.pypa.io/ez_setup.py -O - | sudo python ``` 再次尝试安装Django。 ### ...

    drupal 6.12

    Clean URLs support on IIS, see "Using Clean URLs with IIS" (http://drupal.org/node/3854) in the Drupal handbook. - Various Drupal features require that the web server process (for example, httpd) ...

    python3.6.5参考手册 chm

    Operating Systems No Longer Supported API and Feature Removals Code Cleanups Porting to Python 3.4 Changes in ‘python’ Command Behavior Changes in the Python API Changes in the C API Changed ...

    EurekaLog_7.5.0.0_Enterprise

    No files are copied to \bin folder of IDE. Run-time package (EurekaLogCore) is copied to Windows\System32 folder. Refer to help for more info. 2)....Added: RAD Studio 10.1 Berlin support 3)....Added:...

Global site tag (gtag.js) - Google Analytics