Wiki/SETTING_UP_A_PYTHON_DEVELOPMENT_ENVIRONMENT.md
2025-03-21 10:15:54 +01:00

19 lines
350 B
Markdown

# Setting up a Python Development Environment
Creating a virtual environment:
```sh
python -m venv .venv
```
Activating the virtual environment:
```sh
. .venv/bin/activate
```
# Other Relevant Documentation
[Installing Dependencies](INSTALLING_DEPENDENCIES.md)
[Running python executables under UNIX](RUNNING_PYTHON_EXECUTABLES_UNDER_UNIX.md)