1. ホーム
  2. python

[解決済み] PythonのWindows版パッケージをvirtualenvsにインストールすることはできますか?

2022-08-02 09:48:04

質問

Virtualenvは素晴らしいです。異なるプロジェクトの依存関係を共通の山に投げ込まないように、いくつもの異なるPythonのインストールを維持することができます。

しかし、Windowsに.exeインストーラとしてパッケージされたパッケージをインストールしたい場合、どのようにしてvirtualenvにインストールするように指示できますか? たとえば、私はpycuda-0.94rc.win32-py2.6.exeを持っています。 これを実行すると、レジストリを調べて、インストールするPython26を1つだけ見つけ、それは私の仮想環境がベースにしている共通のものです。

どのようにしたら、仮想環境にインストールするように指示できますか?

どのように解決するのですか?

結局、あるスクリプト ( http://effbot.org/zone/python-register.htm ) を適用して、Python のインストールをレジストリに登録することにしました。 私は Python を Python をレジストリに登録し、Windows インストーラーを実行し、その後レジストリを元に戻します。

# -*- encoding: utf-8 -*-
#
# script to register Python 2.0 or later for use with win32all
# and other extensions that require Python registry settings
#
# Adapted by Ned Batchelder from a script
# written by Joakim Löw for Secret Labs AB / PythonWare
#
# source:
# http://www.pythonware.com/products/works/articles/regpy20.htm

import sys

from _winreg import *

# tweak as necessary
version = sys.version[:3]
installpath = sys.prefix

regpath = "SOFTWARE\\Python\\Pythoncore\\%s\\" % (version)
installkey = "InstallPath"
pythonkey = "PythonPath"
pythonpath = "%s;%s\\Lib\\;%s\\DLLs\\" % (
    installpath, installpath, installpath
)

def RegisterPy():
    try:
        reg = OpenKey(HKEY_LOCAL_MACHINE, regpath)
    except EnvironmentError:
        try:
            reg = CreateKey(HKEY_LOCAL_MACHINE, regpath)
        except Exception, e:
            print "*** Unable to register: %s" % e
            return

    SetValue(reg, installkey, REG_SZ, installpath)
    SetValue(reg, pythonkey, REG_SZ, pythonpath)
    CloseKey(reg)
    print "--- Python %s at %s is now registered!" % (version, installpath)

if __name__ == "__main__":
    RegisterPy()

このスクリプトを登録したいPythonを指定して実行すると、レジストリに登録されます。Windows 7とVistaでは、Administrator権限が必要なことに注意してください。