add: docs

This commit is contained in:
ahoemann 2025-03-21 10:21:25 +01:00
parent e1302716cb
commit 0caf5fa2ed
5 changed files with 16 additions and 2 deletions

View file

@ -0,0 +1,7 @@
# Installing Dependencies
# Updating and Upgrading pip
```sh
python -m pip install --upgrade pip
```

View file

@ -0,0 +1,6 @@
# Python Documentation
## Pages
* [Setting up a Python Development Environment](SETTING_UP_A_PYTHON_DEVELOPMENT_ENVIRONMENT.md)

View file

@ -0,0 +1,19 @@
# 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)