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 11.10,并在上面放了几个版本的 Python,包括 EPD Python、Python 2.7(标准)和 Python 3.2。我主要使用 EPD 发行版并希望使用 mpmath 模块对其进行扩展。基本上这听起来很简单,但 Linux 总是将包安装到标准的 2.7 或 3.2 版本。
如何专门扩展 EPD 分发?我必须承认我对 Linux 和 Python 都很陌生,所以希望有一个简单的解决方案。
如果您使用 easy_install 安装软件包,您可以这样做
python_executable_name -m easy_install packagename
这会将软件包安装到该 python 版本。