i downloaded mitmproxy from: https://github.com/cortesi/mitmproxy and install mitmproxy with the following command:
sudo python setup.py install
If i try to start mitmproxy with:
./mitmproxy -p 8899
I get the following errors:
Traceback (most recent call last):
File "./mitmproxy", line 19, in <module>
from libmproxy import proxy, console, cmdline
File "/Users/carl.jahn/Downloads/cortesi-mitmproxy-bc3ba4c/libmproxy/proxy.py", line 24, in <module>
import utils, flow, certutils
File "/Users/carl.jahn/Downloads/cortesi-mitmproxy-bc3ba4c/libmproxy/certutils.py", line 2, in <module>
from pyasn1.type import univ, constraint, char, namedtype, tag
ImportError: No module named pyasn1.type
How can i fix the errors?
Thanks
Update:
ok, i fixed it by
installing the current release
installing urwid by download from the current release and copy the urwid folder (which is within the downloaded urwid-X.X.X folder) in the mitmproxy folder
installing pyasn1 and pyopenssl with:
pip install pyasn1or (sudo)easy_install pyasn1pip install pyopensslor (sudo)easy_install pyopensslStart the mitmproxy installation with:
sudo python setup.py install- And finally start mitmproxy with:
mitmproxy -p 8888