2011-01-23 10 views
5

、インターネットアクセスは、NTLM認証によって管理されていると、Windowsのユーザーアカウントに関連付けられている、とeasy_installをまたはピップは動作しません:easy_installをまたはNTLM認証とピップは、私の作業環境で

C:\>easy_install django 
install_dir D:\Python26\Lib\site-packages\ 
Searching for django 
Reading http://pypi.python.org/simple/django/ 
Download error: timed out -- Some packages may not be found! 
.... 

C:\>pip install django 
Downloading/unpacking django 
    Cannot fetch index base URL http://pypi.python.org/simple/ 
    Could not find any downloads that satisfy the requirement django 
No distributions at all found for django 

を取得することは可能です彼らはそのような環境で働いていますか?

+0

重複http://stackoverflow.com/questions/9698557/how-to-use-pip-on-windows-behind-an-authenticating-proxy/ – rofrol

答えて

4

NTLMAPSを使用し、ローカルプロキシにポイントピップします。

+2

システム要件には、Python 1.5.2以降が必要であり、それは私にそれが古代のパッケージだと思うようにしますが、Python 2.6で動作します!そしてそこに記載されているcntlm(http://cntlm.sourceforge.net/)も動作します。ありがとう! –

+1

ああ、申し訳ありません。私はLinuxでcntlmを自分で使いますが、何らかの理由でLinux専用だと思っていました。 cntlmがあなたのためにWindows上で動作するなら、それは行く方法です。 – sykora

+0

私はNTLMAPSを稼働させることができませんでしたが、私はcntlmを使用することができました。ありがとう! –

関連する問題