Python 使用Django
程序员文章站
2022-09-18 13:34:33
1、安装Python3环境 ,自行百度。2、安装Djangopython3 -m pip install -i https://pypi.douban.com/simple Django...
1、安装Python3环境 ,自行百度。
2、安装Django
python3 -m pip install -i https://pypi.douban.com/simple Django
3、创建一个项目
python3 -m django startproject mysite
4、创建一个应用
cd mysite
python3 manage.py startapp polls
VSCodeIDE Unable to import 'django.http’pylint(import-error)错误解决办法
原因:VSCode中的Python解释器配置和你安装Django时的解释器不一致;
解决办法:更换VSCode中的Python解释器;
打开命令面板(Ctrl + SHIFT + P)
键入【Python Select:Interpreter】解释器
选择安装Django的解释器即可
5、启动项目
python3 manage.py runserve
用你的浏览器访问 http://localhost:8000/polls/,你应该能够看见 “Hello, world. You’re at the polls index.” ,这是你在 index 视图中定义的。
本文地址:https://blog.csdn.net/qq_20967969/article/details/109636701