I am trying to install on my Ubuntu 14.04 machine mercurial using easy_install. I type this command to install as root user :
sudo easy_install mercurial
And on the terminal i get this error message :
Searching for mercurial
Reading https://pypi.python.org/simple/mercurial/
Download error on https://pypi.python.org/simple/mercurial/: [Errno -2] Name or service not known -- Some packages may not be found!
Couldn't find index page for 'mercurial' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading https://pypi.python.org/simple/
Download error on https://pypi.python.org/simple/: [Errno -2] Name or service not known -- Some packages may not be found!
No local packages or download links found for mercurial
error: Could not find suitable distribution for Requirement.parse('mercurial')
Can anybody help me out why its not working?
PS. I am running this behind proxy, and i have all the necessay env variable set. When i run env
command i have
HTTP_PROXY=http://username:password@172.31.102.14:3128
HTTPS_PROXY=https://username:password@172.31.102.14:3128
as my proxy set.