til/Development/Python/venv.md

15 lines
183 B
Markdown
Raw Normal View History

2020-06-08 18:09:04 +00:00
# [venv](https://docs.python.org/3/library/venv.html)
2020-04-30 16:32:50 +00:00
2020-06-08 18:09:04 +00:00
Creating virtual environments:
2020-04-30 16:32:50 +00:00
```sh
2020-06-08 18:09:04 +00:00
python3 -m venv /path/to/venv
2020-04-30 16:32:50 +00:00
```
2020-06-08 18:09:04 +00:00
Activate:
2020-04-30 16:32:50 +00:00
```sh
2020-06-08 17:57:32 +00:00
# Bash
2020-04-30 16:32:50 +00:00
source ./venv/bin/activate
```