Python2切换Python3

Ubuntu自带python2,有时候需要使用pytho3。使用 update-alternatives

建立链接

1
sudo update-alternatives --install /usr/bin/python python /usr/local/lib/python2.7 100
1
sudo update-alternatives --install /usr/bin/python python /usr/local/lib/python3.2 150

如果要切换到Python2

1
sudo update-alternatives --config python

评论

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×