setup/doc/debian11-python.md

24 lines
297 B
Markdown
Raw Permalink Normal View History

2022-05-25 13:25:51 +02:00
# Setup Python on Debian 11
* update apt repository cache
```
sudo apt update
```
* check available Python version
```
python3 -V
python -V
```
* install Python on Python 3 link
```
sudo apt install python-is-python3 --no-install-recommends
```
* validate version
```
python3 -V
python -v
```