format translation: change colon

This commit is contained in:
Ein Verne
2019-10-19 14:12:27 +08:00
committed by Starbeamrainbowlabs
parent f0f2764de2
commit 30c2bd4c7c
181 changed files with 694 additions and 694 deletions

View File

@@ -3,22 +3,22 @@
> 创建被隔离的的 Python 虚拟环境.
> 更多信息:<https://virtualenv.pypa.io/>.
- 创建新环境
- 创建新环境:
`virtualenv {{path/to/venv}}`
- 自定义提示符
- 自定义提示符:
`virtualenv --prompt={{prompt_prefix}} {{path/to/venv}}`
- 为虚拟环境使用不同的 Python 版本
- 为虚拟环境使用不同的 Python 版本:
`virtualenv --python={{path/to/pythonbin}} {{path/to/venv}}`
- 启动 (选择) 环境
- 启动 (选择) 环境:
`source {{path/to/venv}}/bin/activate`
- 停止环境
- 停止环境:
`deactivate`