eset / ipyida

IPython console integration for IDA Pro

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IDA 6.8 Win7x64 Installer Error

tylerha97 opened this issue · comments

Python>import urllib2; exec urllib2.urlopen('https://github.com/eset/ipyida/raw/stable/install_from_ida.py').read()
[+] Using already installed pip (version 7.0.1)
Traceback (most recent call last):
File "", line 1, in
File "", line 52, in
File "C:\Python27\lib\site-packages\pip__init__.py", line 217, in main
return command.main(cmd_args)
File "C:\Python27\lib\site-packages\pip\basecommand.py", line 185, in main
for name in ["pip._vendor", "distlib", "requests", "urllib3"]
File "C:\Python27\Lib\logging\config.py", line 803, in dictConfig
dictConfigClass(config).configure()
File "C:\Python27\Lib\logging\config.py", line 585, in configure
'%r: %s' % (name, e))
ValueError: Unable to configure handler 'console': IDAPythonStdOut instance has no attribute 'closed'

Hi!

Thanks for reporting the issue.

It seems that pip 7.0.1 doesn't like sys.stdout to be set to a non-file object. I tried to fix it in the master branch.

Can try the following?

import urllib2; exec urllib2.urlopen('https://github.com/eset/ipyida/raw/master/install_from_ida.py').read()

Fix worked great. Love this :-) Thank you!

Awesome!
Cheers!
M-E