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 15cb01f commit 962e7bdCopy full SHA for 962e7bd
axure/zentao.rp
51.2 KB
lang/Python/pip.md
@@ -43,4 +43,6 @@ General Options:
43
Don't periodically check PyPI to determine whether a new version of pip is available for
44
download. Implied with --no-index.
45
--no-color Suppress colored output
46
-```
+```
47
+
48
+# requirments.txt
lang/Python/virtualenv.md
@@ -0,0 +1,6 @@
1
2
+> 创建一个独立的Python运行环境,命名为venv
3
+> virtualenv --no-site-packages venv
4
+> 已经安装到系统Python环境中的所有第三方包都不会复制过来,这样,我们就得到了一个不带任何第三方包的“干净”的Python运行环境。
5
6
+> source venv/bin/activate
0 commit comments