Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 Ubuntu 12.04 系统上下载并构建了一个新的 Python 安装,却没有意识到 Ubuntu 已经安装了它。
我所做的一切都把事情搞砸了,因为我需要的模块之一不再工作了。有没有办法恢复到原来的安装?
谢谢!
./configure && make && make install永远不要在带有包管理器的系统上构建这样的东西。这可能(并且将会)导致无法预料的后果。
./configure && make && make install
为了将您在没有包管理器的情况下安装的内容卸载cd到带有 makefile 的文件夹并执行make uninstall.
cd
make uninstall
如果你想在现有版本的同时安装其他版本的 python,找到合适的包并使用update-alternatives选择默认的。
update-alternatives