美文网首页
py django mac run

py django mac run

作者: Zszen | 来源:发表于2020-05-22 02:04 被阅读0次

安装

pip3 install Django

创建项目

django-admin.py startproject {项目名称}

如果提示You have 17 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions. Run 'python manage.py migrate' to apply them. 请换个项目名, 不能和py模块相同

如果提示Django需要权限使用python manage.py migrate

启动项目

python manage.py runserver
or
python3 manage.py runserver 0.0.0.0:8000

》如果使用sh运行项目失败, 把项目目录权限开放
Permission denied
···
sudo chmod -R 777 {项目目录}
···

相关文章

网友评论

      本文标题:py django mac run

      本文链接:https://www.haomeiwen.com/subject/vzgxahtx.html