web-dev-qa-db-ja.com

プロキシサーバーの背後からez_setup.pyを使用してPythonのeasy_installをインストールする

プロキシサーバーを使用する企業ネットワーク上で、ez_setup.pyを使用してPythonのeasy_installをインストールする方法はありますか?現在、接続タイムアウトが発生します。

Downloading http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11-py2.7.Egg
Traceback (most recent call last):
  File "C:\jsears\python\ez_setup.py", line 278, in <module>
    main(sys.argv[1:])
  File "C:\jsears\python\ez_setup.py", line 210, in main
    Egg = download_setuptools(version, delay=0)
  File "C:\jsears\python\ez_setup.py", line 158, in download_setuptools
    src = urllib2.urlopen(url)
  File "C:\jsears\Python27\lib\urllib2.py", line 126, in urlopen
    return _opener.open(url, data, timeout)
  File "C:\jsears\Python27\lib\urllib2.py", line 400, in open
    response = self._open(req, data)
  File "C:\jsears\Python27\lib\urllib2.py", line 418, in _open
    '_open', req)
  File "C:\jsears\Python27\lib\urllib2.py", line 378, in _call_chain
    result = func(*args)
  File "C:\jsears\Python27\lib\urllib2.py", line 1207, in http_open
    return self.do_open(httplib.HTTPConnection, req)
  File "C:\jsears\Python27\lib\urllib2.py", line 1177, in do_open
    raise URLError(err)
urllib2.URLError: <urlopen error [Errno 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected Host has failed to respond>
12
jsears

どうやら、あなたは単に環境変数を設定することができます:

export http_proxy = http:// <user>:<password> @ <proxy_Host_name>:<port>

例えば:

エクスポートhttp_proxy = http:// admin:[email protected]:80

6
jsears

Windows 7では、PowerShellを使用すると、上記のプロキシ設定は無視され、ツールは機能しません。しかし、私は解決策を見つけました。

ルーチンdownload_file_powershellを追加して変更しました

[System.Net.WebRequest]::DefaultWebProxy.Credentials = [System.Net.CredentialCache]::DefaultCredentials;

webClientクラスを介してダウンロードするために使用されるスクリプトレット内。これが完全なdownload_file_powershell関数です。

def download_file_powershell(url, target):
"""
Download the file at url to target using Powershell (which will validate
trust). Raise an exception if the command cannot complete.
"""
target = os.path.abspath(target)
cmd = [
    'powershell',
    '-Command',
    "[System.Net.WebRequest]::DefaultWebProxy.Credentials = [System.Net.CredentialCache]::DefaultCredentials;  (new-object System.Net.WebClient).DownloadFile(%(url)r, %(target)r)" % vars(),
]
subprocess.check_call(cmd)
15
valir

すでにhttp_proxy/https_proxy環境変数が設定されている場合は、PowerShellを使用しないようにez_setup.pyに指示するだけです。 PowerShellはHTTP_PROXY/HTTPS_PROXY環境変数を使用しません。この応答の最初のセクションに従ってください。

環境変数の設定方法がわからない場合は、セクション2+を参照してください。

ez_setup.pyによるPowerShellの使用を停止します

Ez_install.pyに移動して、次のセクションを見つけます。

def has_powershell():
    if platform.system() != 'Windows':
        return False
    cmd = ['powershell', '-Command', 'echo test']
    devnull = open(os.path.devnull, 'wb')
    try:
        try:
            subprocess.check_call(cmd, stdout=devnull, stderr=devnull)
        except:
            return False
    finally:
        devnull.close()
    return True

に変更します

def has_powershell():
     return False

ez_install.pyは、コマンドラインまたはコントロールパネルから設定できる環境HTTP_PROXY/HTTPS_PROXYを使用します。

一時的なコマンドライン:

set HTTP_PROXY=http://proxy.example.com
set HTTPS_PROXY=https://proxy.example.com

注:これを行う場合は、これらのコマンドを実行したのと同じコマンドウィンドウで「pythonez_setup.py」を実行する必要があります。

永続的なコマンドライン(ユーザーのみ):

setx HTTP_PROXY "http://proxy.example.com"
setx HTTPS_PROXY "https://proxy.example.com"

永続的なコマンドライン(マシン、別名すべてのユーザー):

setx HTTP_PROXY "http://proxy.example.com" /M
setx HTTPS_PROXY "https://proxy.example.com" /M

コントロールパネル経由で永続的:

  1. スタート->コントロールパネル->ユーザーアカウント
  2. 左側のパネルで、[環境変数を変更する]をクリックします
  3. 「ユーザー変数」または「システム変数」の「新規..」をクリックします(必要に応じて)
  4. 変数名を設定:HTTP_PROXYおよび変数値:http:/proxy.example.com
  5. 「ユーザー変数」または「システム変数」の「新規..」をクリックします(必要に応じて)
  6. 変数名を設定:HTTPS_PROXYおよび変数値:https:/proxy.example.com
  7. [OK]をクリックします
7
Andrew Martinez

コードで設定することもできます:

import urllib2

proxy = urllib2.ProxyHandler({'http':'http://username:password@proxy_Host:port'})
auth = urllib2.HTTPBasicAuthHandler()
opener = urllib2.build_opener(proxy, auth, urllib2.HTTPHandler)
urllib2.install_opener(opener)
4
namit

私はちょうど同じ問題に遭遇しました、そしてこれは私が見つけた解決策です。私はそれが理想的ではないことを認めますが、それは私がWindowsでこの問題を回避するために見つけた唯一の方法です。

  1. ダウンロード。 ez_setup.py。
  2. 次の行を編集して、ファイルが圧縮されたパッケージをダウンロードする場所を示します。

savetoを印刷

def download_setuptools(version=DEFAULT_VERSION, download_base=DEFAULT_URL,
                        to_dir=os.curdir, delay=15,
                        downloader_factory=get_best_downloader):
# making sure we use the absolute path
to_dir = os.path.abspath(to_dir)
tgz_name = "setuptools-%s.tar.gz" % version
url = download_base + tgz_name
saveto = os.path.join(to_dir, tgz_name)
print saveto
if not os.path.exists(saveto):  # Avoid repeated downloads
    log.warn("Downloading %s", url)
    downloader = downloader_factory()
    downloader(url, saveto)
return os.path.realpath(saveto)

これにより、私の場合、スクリプトを実行すると次の出力が提供されます: "C:\ Python27> python.exeez_setup.py"

出力:

C:\ Python27\setuptools-1.4.2.tar.gzダウンロード https://pypi.python.org/packages/source/s/setuptools/setuptools-1.4.2.tar.gz 例外「2」引数を指定して「DownloadFile」を呼び出す:「リモートサーバーがエラーを返しました:(407)プロキシ認証が必要です。」行:1文字:47 +(new-object System.Net.WebClient).DownloadFile <<<<( ' https://pypi.python.org/packages/source/s/setuptools/setuptools- 1.4.2.tar.gz '、' C:\ Python27\setuptools-1.4.2.tar.gz ')+ CategoryInfo:NotSpecified :( :) []、MethodInvocationException + FullyQualifiedErrorId:DotNetMethodException

  1. 上記のhttpsリンクからパックをダウンロードし、私の場合は「C:\ Python27\"」と予想される場所に配置します。

このファイルがその場所に配置されると、次の論理ステートメントがトリガーされます。

if not os.path.exists(saveto):  # Avoid repeated downloads
    log.warn("Downloading %s", url)
    downloader = downloader_factory()
    downloader(url, saveto)
return os.path.realpath(saveto)

まるで魔法のように、パッケージがインストールされます。

0
LeeO