英文:
How to downgrade python from 3.10 to 3.9 on Ubuntu, WSL
问题
我需要为一个项目降级Python。无法从Ubuntu的3.10降级到3.9,也无法从Windows子系统(Windows Subsystem for Linux)降级。
英文:
I need to downgrade python for a project. Unable to downgrade from 3.10 to 3.9 on Ubuntu, Windows Subsystem for Linux.
答案1
得分: 11
尝试以下步骤:
我正在使用Ubuntu 22.04
sudo apt-get update
sudo add-apt-repository ppa:deadsnakes/ppa
apt list | grep python3.9
sudo apt install python3.9
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1
sudo update-alternatives --config python3
英文:
Try the following steps
I'm using Ubuntu 22.04
sudo apt-get update
sudo add-apt-repository ppa:deadsnakes/ppa
apt list | grep python3.9
sudo apt install python3.9
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1
sudo update-alternatives --config python3
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论