Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Django 入门


要安装 Django,您必须安装 Python,以及像 PIP 这样的包管理器。

PIP 从 Python 3.4 版本开始包含在内。


Django 需要 Python

要检查您的系统是否安装了 Python,请在命令提示符中运行以下命令

python --version

如果安装了 Python,您将得到一个包含版本号的结果,例如

Python 3.9.2

如果您发现您的计算机上没有安装 Python,那么您可以从以下网站免费下载:https://www.pythonlang.cn/


PIP

要安装 Django,您必须使用像 PIP 这样的包管理器,它从 Python 3.4 版本开始包含在内。

要检查您的系统是否安装了 PIP,请在命令提示符中运行以下命令

pip --version

如果安装了 PIP,您将得到一个包含版本号的结果。

对我来说,在 Windows 机器上,结果看起来像这样

pip 20.2.3 from c:\python39\lib\site-packages\pip (python 3.9)

如果您没有安装 PIP,您可以从以下页面下载并安装:https://pypi.ac.cn/project/pip/


虚拟环境

建议为每个 Django 项目设置一个专门的虚拟环境,在 下一章 中,您将学习如何创建虚拟环境,然后在其中安装 Django。




×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.