Ubuntu:通过 apt 安装软件包后从源代码重新安装的正确方法是什么?
我之前通过 apt 安装了一个 python 包(默认情况下)。 现在我想安装新版本并从源代码手动编译它并包含所有必需的模块。
我怎样才能做到这一点? 我认为
apt-get purge python
然后从源安装是不可能的,因为 python 有很多依赖项,在这种情况下将卸载所有依赖项。
这样做的正确方法是什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要替换系统默认的 Python 解释器。它可能会破坏以后难以修复的东西。相反,您可能想使用 virtualenv。然后,您可以将任何问题与您的环境隔离,并获得可独立测试的多个 Python 安装的额外优势。
这里有一些值得一读的内容,可以帮助您入门:
Don't replace your system's default Python interpreter. It can break things which will be difficult to fix later. Instead you probably want to use virtualenv. You can then isolate any issues from your environment and have the added advantage of multiple Python installations which can tested independently.
Here is some worthwhile reading to get you started:
然后
将删除不再需要的包和任何依赖项。
then
will remove the package and any dependencies that are no longer needed.