frida-ios-dump: ImportError: No module named frida ,Please Help

guobaomingdeMac:frida-ios-dump guobaoming$ dump.py Traceback (most recent call last): File "/opt/dump/frida-ios-dump/dump.py", line 9, in <module> import frida ImportError: No module named frida

About this issue

  • Original URL
  • State: closed
  • Created 6 years ago
  • Comments: 16 (3 by maintainers)

Most upvoted comments

Run command $ pip --version and $ pip3 --version to check which pip is from at Python 3x. E.g. you should see version information like below:

pip 19.0.3 from /usr/local/lib/python3.7/site-packages/pip (python 3.7)

Then run the right pip command to install frida-tools, e.g. pip3

$ pip3 install frida-tools

Then run the example.py script with below command

$ python3 example.py

if you have python3 try this to execute dump.py python3 ./dump.py

But still the same error.

I think your python is mac self, try this cmd “python -m pip install frida-tools”

Try use pip install frida-tools instead.

or use Anaconda