Wiki/SETTING_UP_A_PYTHON_DEVELOPMENT_ENVIRONMENT.md
2025-03-21 09:19:37 +01:00

20 lines
351 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
[Running python executables under UNIX](RUNNING_PYTHON_EXECUTABLES_UNDER_UNIX.md)
[Installing Dependencies](INSTALLING_DEPENDENCIES.md)