Eclipse+PyDev开发Django在Ubuntu下的配置
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
emacs用来当IDE还行,但是当RAD工具就缺乏一些实用特性,特别是IntelliSense功能。由于Eclipse和Visual Studio一样可以设置成emacs快捷键模式,决定尝试用此来开发django应用。
1) 安装eclipse和pydev
在Debian系的Linux中这很简单。由于依赖关系,我们只需安装pydev,剩下的apt自动会给安装上。
sudo apt-get install eclipse-pydev
2) 配置Python解析器
window > preferences > pydev > Interpreter 选择Python或者Jython。若选择Python,在Python interpreters中加入/usr/bin/python
在System PYTHONPATH中加入package的路径。
3) 新建django项目
依次选择 File > New > Project > Pydev > Pydev Project
选择项目路径,不要钩选"create default src folder..."
在任意处新建一个django project
django-admin.py startproject mysite
把建立的所有文件转移到项目路径。在项目名上右键点击refresh就可以看到新文件了。
4) 配置项目路径
项目名上右键点击properties,选择PyDev - PYTHONPATH,在Project Source Folders加入项目路径。
5) 运行配置
菜单选择Run > Run...在Python Run中新建一个运行配置。选择Project名字,选择Main Module为manage.py。Arguments设为runserver --noreload
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)