首先新建项目:File > New Project 选择Django
这里我们要添加虚拟环境,根据上节新建的虚拟环境添加,红色图框为添加路径。
因为新的虚拟环境我们没有安装Django模块,所以,这里提示我们安装,点击新建。
这时我们已经新建了一个Django项目,我们可以在 File > Settings 里面输入interpreter查找项目的环境:
我们可以运行该项目: Run > Run
"C:\Program Files (x86)\JetBrains\PyCharm 2016.3.1\bin\runnerw.exe" C:\Users\wex\Envs\zjyd\Scripts\python.exe G:/pyCharm/untitled/djangotest/manage.py runserver 8000
Performing system checks...
System check identified no issues (0 silenced).
You have 13 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.
March 13, 2017 - 12:07:57
Django version 1.10.6, using settings 'djangotest.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
访问http://127.0.0.1:8000/ 查看运行结果
pyCharm的几个使用技巧:
1,在settings中搜索 keymap可以设置快捷键
2,通过 Mark Directory as 设置目录属性
3,可以在Run > Edit configurations 中设置访问IP和端口