Files
tldr/pages.zh/common/venv.md

20 lines
443 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# venv
> 在 Python 中创建轻量级虚拟环境。
> 更多信息:<https://docs.python.org/3/library/venv.html>。
- 创建一个 Python 虚拟环境:
`python -m venv {{path/to/virtual_environment}}`
- 激活虚拟环境Linux 和 macOS
`source {{path/to/virtual_environment}}/bin/activate`
- 激活虚拟环境Windows
`{{path\to\virtual_environment}}\Scripts\activate.bat`
- 退出虚拟环境:
`deactivate`