1

Windows 7 に 64 ビット Python をインストールし、しばらく使用しました。一部のライブラリでは 32 ビットの Python が必要なため、32 ビットの Python に切り替える必要があります。以前にインストールしたすべてのライブラリと設定を保持しながら、これを簡単に行うことはできますか?

4

1 に答える 1

0

You can use virtualenv to maintain environments that use distinct Python versions.

More directly to your question of keeping the same install-base, the answer is generally "no", you cannot keep the same installs. Some packages are obtained for a specific Python-version/OS/hardware combination (e.g. mypackagePy27Win64.exe) and such packages will have placed 64-bit-specific DLLs on your filesystem. Using virtualenv will let you isolate your new x32 work environment from your existing x64 work environment.

于 2013-02-13T20:18:38.070 に答える