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.
-
Stackless is a replacement for CPython.Eric Urban– Eric Urban2013-08-29 01:53:53 +00:00Commented Aug 29, 2013 at 1:53
-
Yes, and? I still need to uninstall CPython first. That will remove all the modules I've installed. And that's why I'm asking for a method to keep both installed and also the same version.cdonts– cdonts2013-08-30 23:56:35 +00:00Commented Aug 30, 2013 at 23:56
2 Answers
There are binary snapshots which can be extracted over a standard Python installation, to turn it into a Stackless installation. This would keep all your modules. They are on the download page on the stackless web site.
However, the last time one of these was made, was for 2.7.2.
You could download the one for 2.7.2, look at what files are in it, download the Stackless installer for the standard Python version you are actually using and extract those same files, and put them into place manually.
Of course, if you really wanted an answer for this, you would ask on the Stackless mailing list.