安装 Django 时遇到问题

发布于 2024-09-14 07:38:47 字数 327 浏览 1 评论 0原文

即使我按照此处的说明进行操作,我在安装 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

卸妝后依然美 2024-09-21 07:38:47

好的。如果您安装了Python,则可以继续执行Django 提供的setup.py。转到解压 Django 的目录。

cd C:\path\to\Django\

您现在可以执行

python setup.py install

此步骤要求您的 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.

cd C:\path\to\Django\

You can now execute

python setup.py install

This step requires your python executable to be present in the system's PATH environment variable. If it isn't you will have to append your Python installation directory to your PATH.

Update

You can verify that the installation has gone well with the following command. Run python and execute the command import django. If no import errors are thrown everything is OK. Thanks to cji for the tip.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文