“Python -Version in Ubuntu installiert” Code-Antworten

Überprüfen Sie alle Python -Versionen Ubuntu

# View as version vise:
for p in $(compgen -c python); do printf "%-16s" $p; $p --version; done
python2.7      Python 2.7.6
python3.4m     Python 3.4.3

# view as:
$ compgen -c python
python2.7
python3.4m
bilalahmed_dev

Python -Version in Ubuntu installiert

# check all python version install in ubuntu
$ ls /usr/bin/python* # for path and version
$ whereis python # for path and version
$ which python # for path
$ ls -lach /usr/bin/python
$ for p in $(compgen -c python); do printf "%-16s" $p; $p --version; done
bilalahmed_dev

Ähnliche Antworten wie “Python -Version in Ubuntu installiert”

Fragen ähnlich wie “Python -Version in Ubuntu installiert”

Weitere verwandte Antworten zu “Python -Version in Ubuntu installiert” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen