Easy_install or pip with NTLM auth

In my working environment, Internet access is controlled using NTLM authentication and is associated with a Windows user account, and easy_install or pip do not work:

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

Is it possible to make them work in such an environment?

+5
source share
1 answer

Use NTLMAPS and specify a point in the local proxy.

+4
source

All Articles