Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9531757 commit 4be8cd6Copy full SHA for 4be8cd6
README.md
@@ -28,7 +28,7 @@
28
### 邮件订阅
29
* [python weekly](http://www.pythonweekly.com/)
30
31
-# 在sublime中运行python
+## 在sublime中运行python
32
“Preference(首选项)”-----》“Browse Packages(浏览程序包)”----------》“python”,在打开的目录中修改Python.sublime-build文件类似如下
33
```
34
{
@@ -38,3 +38,22 @@
38
}
39
40
然后,Python文件就可以`ctrl/Command + b`来运行
41
+
42
+## 包管理
43
+可以使用 [pip](https://pip.pypa.io/en/latest/user_guide.html)进行包管理。
44
+1. 项目根路径下创建`requirements.txt`
45
+1. 内容类似例如
46
+```
47
+MyApp
48
+Framework==0.9.4
49
+Library>=0.2
50
51
+1. 然后执行 `pip install -r requirements.txt`
52
53
+具体产看 https://pip.readthedocs.org/en/1.1/requirements.html
54
55
+### python版本管理
56
+virtualenv
57
58
+### 自动化远程部署项目
59
+* [fabric](http://www.fabfile.org/en/latest/)
0 commit comments