使用python搭建Django应用程序步骤及版本冲突问题解决
首先你要确保你机器上面安装了python,其次,你还要确保你上面安装了Django。
接下来,才能进入到搭建第一个Django应用程序
很简单的操作,即在windows终端输入代码:
1 django-admin.py startproject mysite
即可,如:我是在我电脑的 E:\Python33\python_workspace 目录下面创建项目的
目录是你自己定的
运行命令:
django-admin.py startproject mysite
#意思是创建一个以mysite命名的应用程序

接下来就要进入到: E:\Python33\python_workspace\mysite 目录
注意:这里一定要先进到 mysite 目录,否则,会失败滴!!!!
运行代码:
python manage.py runserver 8080
#意思是启动服务,端口为:8080,如果不设置端口,默认为:80000
如下图:
启动好了服务,那么我们现在就可以通过浏览器进行访问了
在浏览器地址栏中输入:http://localhost:8080
到现在,你的第一个django应用程序就算是成功了!!!
遇到的问题及解决方案:
1.importError:No module named django.core
分析和解决方案:这是在运行命令:django-admin.py startproject mysite的时候遇到的问题,可以确定的是,在
自己机器上面django是已经成功安装了的,可以通过:
python -c "import django;print(django.get_version())"
来验证;其次,已经把django-admin.py加入到了环境变量中:
#加入到path环境变量中 #django的安装目录
E:\Python33\Lib\site-packages\django\bin
我上面两步操作都做了,但是还是出现了错误,后来发现了问题的原因:我电脑上面安装的python版本过多:python2.7.5,python32,python33
最后把python2.7.5,python32卸载了,只留下python33,然后再运行,成功!!!
2.python:can't open file 'manage.py'
这个和上面的原因差不多,解决的方法,也是版本冲突,把其他卸载掉,只留下python33,成功!!!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

When using Python's pandas library, how to copy whole columns between two DataFrames with different structures is a common problem. Suppose we have two Dats...

How to teach computer novice programming basics within 10 hours? If you only have 10 hours to teach computer novice some programming knowledge, what would you choose to teach...

How to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...

How does Uvicorn continuously listen for HTTP requests? Uvicorn is a lightweight web server based on ASGI. One of its core functions is to listen for HTTP requests and proceed...

Regular expressions are powerful tools for pattern matching and text manipulation in programming, enhancing efficiency in text processing across various applications.

In Python, how to dynamically create an object through a string and call its methods? This is a common programming requirement, especially if it needs to be configured or run...

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H
