I'm new to python. I would like to install the latest version of mitmproxy(0.17.1). The current version installed on the system is 0.15. When I do
easy_install -U mitmproxy
It says:
Reading https://pypi.python.org/simple/mitmproxy/
Best match: mitmproxy 0.15
Processing mitmproxy-0.15-py2.7.egg
mitmproxy 0.15 is already the active version in easy-install.pth
So it can not find the latest version and when I do:
easy_install 'mitmproxy==0.17.1'
I get :
No local packages or download links found for mitmproxy==0.17.1
Why can't it find the latest version? What should I do to install the latest one?