--Umgebung: Cloud9 ――Mein Kollege hat Cloud9 verwendet, das EC2 verwendet, daher wollte ich es auch verwenden. Deshalb habe ich Cloud9 gebeten, ein Konto zu erstellen, und es sofort verwendet.
#Python ist nicht 3!
$ python --version
Python 2.7.18
#pip ist ... Python3 aus irgendeinem Grund.6 Dinge?
$ pip --version
pip 20.2.4 from /home/ec2-user/.local/lib/python3.6/site-packages/pip (python 3.6)
#Es scheint Python3 zu geben ...
$ python3 --version
Python 3.6.12
Sollte ich Python in Cloud9 auf 3 ändern? Ich dachte es wäre schon ...
--Referenz: Ändern Sie die Python-Version von Cloud9 in Python3 [amazon AWS] | dot blog
# 「+Ist an Python3 angehängt ... aber ich werde es vorerst auswählen
$ sudo update-alternatives --config python
There are 3 programs which provide 'python'.
Selection Command
-----------------------------------------------
* 1 /usr/bin/python2.7
+ 2 /usr/bin/python3.6
3 /usr/bin/python2.6
Enter to keep the current selection[+], or type selection number: 2
#Es wird nicht Python3 ...
$ python -V
Python 2.7.18
.bashrc
gibt eine ältere Version an#Python in meinem Konto ist 2 ...
$ alias | grep python
alias python='python27'
#Python2 mit Alias.7 ist gesetzt ...
$ cat ~/.bashrc | grep python
alias python=python27
.bashrc
angegebene Python-Version# .Auch wenn es nicht bashrc ist, ist es OK, wenn die Lesereihenfolge später ist
$ ls -la
# ...Kürzung...
-rw-r--r-- 1 ec2-user ec2-user 336 Jul 24 2019 .bash_profile
-rw-r--r-- 1 ec2-user ec2-user 1401 Nov 20 06:48 .bashrc
-rw-rw-r-- 1 ec2-user ec2-user 118 Jul 24 2019 .zshrc
#Öffnen Sie mit vi und mit dem Alias Python3.Geben Sie 6 an
$ vi ~/.bashrc
$ cat ~/.bashrc | grep python
alias python=python36
#Wenn reflektiert
$ source ~/.bashrc
function
# Python3.Es wurde 6 ...
$ python --version
Python 3.6.12
Recommended Posts