I'm getting this error despite I've installed frida using pip install frida-tools .
Tested in MacOS Catalina and Ubuntu 18.04
try this command pip3 install frida-tools
Same issue.Tried npm and still the same.
EDIT:The problem was within Python path.It was not set.Had to manually set the path and it's now working perfectly :)
EDIT:The problem was within Python path.It was not set.Had to manually set the path and it's now working perfectly :)
How did you do it?
It occurs because it cannot set the path correctly due to privileges
to fix this issue:
Uninstall the frida - pip uninstall frida-tools
then install it with sudo - sudo pip install frida-tools
It should be fixed now.
Most helpful comment
It occurs because it cannot set the path correctly due to privileges
to fix this issue:
Uninstall the frida - pip uninstall frida-tools
then install it with sudo - sudo pip install frida-tools
It should be fixed now.