You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have tried to install plugin directory into IDA8.1 directory in Windows OS:
python install.py --install -d "c:\Program Files\IDA Pro 8.1"
But I got an error:
Installing plugins from c:\Users\xxxxx\Desktop\ida\plugins to c:\Program Files\IDA Pro 8.1\plugins...
Installing alleycat...alleycat is not a known plugin. Skipping copy...Done
Installing codatify...codatify is not a known plugin. Skipping copy...Done
Installing fluorescence...fluorescence is not a known plugin. Skipping copy...Done
Installing funcprofiler...funcprofiler is not a known plugin. Skipping copy...Done
Installing leafblower...leafblower is not a known plugin. Skipping copy...Done
Installing localxrefs...localxrefs is not a known plugin. Skipping copy...Done
Installing mipslocalvars...mipslocalvars is not a known plugin. Skipping copy...Done
Installing mipsrop...mipsrop is not a known plugin. Skipping copy...Done
Installing rizzo...rizzo is not a known plugin. Skipping copy...Done
Installing shims...Traceback (most recent call last):
File "install.py", line 108, in <module>
install_plugins(args.directory)
File "install.py", line 50, in install_plugins
open(os.path.join(shims_dir, '__init__.py'), 'a').close()
FileNotFoundError: [Errno 2] No such file or directory: 'c:\\Program Files\\IDA Pro 8.1\\plugins\\shims\\__init__.py'
I got the same kinda error that was saying couldn't find "from shims import ida_shims".
I fixed it by making shims directory in "plugins" and then created ida_shims.py and pasted the code from https://github.com/grayhatacademy/ida/blob/master/plugins/shims/ida_shims.py and now the error is gone. Hope this helps
I have tried to install plugin directory into IDA8.1 directory in Windows OS:
python install.py --install -d "c:\Program Files\IDA Pro 8.1"
But I got an error:
https://github.com/tacnetsol/ida/blob/master/plugins/install.py#L50
The text was updated successfully, but these errors were encountered: