Ich habe versucht, die Standard-Python-Version auf python3
in zu setzen Ubuntu 16.04
. Standardmäßig ist es python2
(2.7). Ich habe die folgenden Schritte ausgeführt:
update-alternatives --remove python /usr/bin/python2
update-alternatives --install /usr/bin/python python /usr/bin/python3
Für die zweite Anweisung wird jedoch der folgende Fehler angezeigt:
rejeesh@rejeesh-Vostro-1015:~$ update-alternatives --install /usr/bin/python python /usr/bin/python3
update-alternatives: --install needs <link> <name> <path> <priority>
Use 'update-alternatives --help' for program usage information.
Ich bin neu in Ubuntu und weiß nicht, was ich falsch mache.
python
zu Python 3 zu wechseln . Die Standardmethode zum Aufrufen von in Python 2 geschriebenen Skripten ist python my-script-p2.py
, solange es so ist python3 my-script-p3.py
. Ich würde erwarten, dass sich viele Systemskripte darauf verlassen.