Closed gbm777 closed 6 years ago
@AloneMonkey
pip install
pip install frida
result in success.
But when I run dump.py result in " No module named frida " Error.
@AloneMonkey
http://iosre.com/t/frida-ios-dump/11640
I followed with this article.
But still the same error.
Try use pip install frida-tools
instead.
or use Anaconda
But still the same error.
I think your python is mac self, try this cmd "python -m pip install frida-tools"
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
Hi All, Im getting the same issue.
This is likely to solve the problem: https://stackoverflow.com/a/58617606/11079758
if you have python3 try this to execute dump.py
python3 ./dump.py
python3 dump.py -l
Traceback (most recent call last):
File "dump.py", line 11, in
if you have python3 try this to execute dump.py
python3 ./dump.py
This help me to solve the problem.
python3 dump.py Traceback (most recent call last): File "dump.py", line 11, in
import frida ModuleNotFoundError: No module named 'frida'
me too
python3 -m pip install frida This was what solves my problem
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