AloneMonkey / frida-ios-dump

pull decrypted ipa from jailbreak device
MIT License
3.42k stars 625 forks source link

ImportError: No module named frida ,Please Help #38

Closed gbm777 closed 6 years ago

gbm777 commented 6 years ago

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

gbm777 commented 6 years ago

@AloneMonkey

AloneMonkey commented 6 years ago

pip install

gbm777 commented 6 years ago

pip install frida

result in success.

But when I run dump.py result in " No module named frida " Error.

@AloneMonkey

gbm777 commented 6 years ago

http://iosre.com/t/frida-ios-dump/11640

I followed with this article.

gbm777 commented 6 years ago

But still the same error.

AloneMonkey commented 6 years ago

Try use pip install frida-tools instead.

or use Anaconda

AloneMonkey commented 6 years ago

miniconda

linxuebin1990 commented 5 years ago

But still the same error.

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

russell-shizhen commented 5 years ago

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
poldenais commented 5 years ago

Hi All, Im getting the same issue.

jbaktir commented 5 years ago

This is likely to solve the problem: https://stackoverflow.com/a/58617606/11079758

richpowell commented 4 years ago

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

393698063 commented 2 years ago

python3 dump.py -l Traceback (most recent call last): File "dump.py", line 11, in import frida ModuleNotFoundError: No module named 'frida'

nanier commented 2 years ago

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

This help me to solve the problem.

ZuhanLin commented 2 years ago

python3 dump.py Traceback (most recent call last): File "dump.py", line 11, in import frida ModuleNotFoundError: No module named 'frida'

me too

flamecopper commented 1 year ago

python3 -m pip install frida This was what solves my problem