0

It seems like on Windows I have to uninstall Python before installing stackless (http://stackless.com/wiki/Download). I have Python 2.7 installed, a solution may be installing Stackless Python 3.2, but I will have to switch between Python 2 and 3 syntax. Is there anyway to install Stackless without uninstalling Python? Otherwise I'll loose all Python modules I've installed and the CPython interpreter.

4

2 回答 2

0

可以通过标准 Python 安装提取二进制快照,将其转换为无堆栈安装。这将保留您的所有模块。它们位于无堆栈网站的下载页面上。

但是,最后一次制作其中一个是针对 2.7.2。

您可以下载 2.7.2 版本的文件,查看其中包含哪些文件,下载您实际使用的标准 Python 版本的 Stackless 安装程序,然后提取这些相同的文件,然后手动将它们放置到位。

当然,如果你真的想要这个问题的答案,你可以在 Stackless 邮件列表上提问。

于 2013-09-02T07:22:58.910 回答
0

将 Stackless 安装到本地文件夹,使用 pip 安装 virtualenv(在任何实现中),并创建二进制文件为 Stackless 的环境。

于 2016-12-31T03:59:05.597 回答