美文网首页Python编程
Python学习笔记

Python学习笔记

作者: 0x_zk | 来源:发表于2022-09-13 12:02 被阅读0次

Python学习笔记

安装最新版

sudo apt-get install software-properties-common
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update

如果报错:ModuleNotFoundError: No module named 'apt_pkg',是用为存在多个python3版本先恢复3.6:sudo ln -sf /usr/bin/python3.6 /usr/bin/python3,或update-alternatives

切换命令行版本

sudo update-alternatives --config python
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 1
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.7 2

sudo update-alternatives --config python
sudo update-alternatives --config python3

相关文章

网友评论

    本文标题:Python学习笔记

    本文链接:https://www.haomeiwen.com/subject/efgkortx.html