安装 Django 时遇到问题
即使我按照此处的说明进行操作,我在安装 Django 时也遇到问题: http://www .djangobook.com/en/2.0/chapter02/
有人可以提供安装 Django 的婴儿步骤吗?我说的是真正分解它的婴儿步骤,以便弱智的人也能做到。
我已经安装了 Django 并解压缩了文件,但我不确定从哪里开始。
我使用的是 Windows 7,并且下载了 Python 2.7 和 Django 1.2.1。
I'm having trouble installing Django, even if I follow the instructions here: http://www.djangobook.com/en/2.0/chapter02/
Could someone please provide baby steps to installing Django. I'm talking baby steps that really break it down, so that a retarded person could do it.
I've installed Django and unzipped the file, but I'm unsure where to go from there.
I on Windows 7, and I've downloaded Python 2.7 and Django 1.2.1.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的。如果您安装了Python,则可以继续执行Django 提供的
setup.py
。转到解压 Django 的目录。您现在可以执行
此步骤要求您的
python
可执行文件存在于系统的PATH
环境变量中。如果不是,您将不得不将 Python 安装目录 添加到PATH
中。更新
您可以使用以下命令验证安装是否顺利。运行
python
并执行命令import django
。如果没有抛出导入错误,则一切正常。感谢 cji 的提示。OK. If you have Python installed, you can then proceed to execute
setup.py
given with Django. Head over to the directory where you unzipped Django.You can now execute
This step requires your
python
executable to be present in the system'sPATH
environment variable. If it isn't you will have to append your Python installation directory to yourPATH
.Update
You can verify that the installation has gone well with the following command. Run
python
and execute the commandimport django
. If no import errors are thrown everything is OK. Thanks to cji for the tip.