Installing Frida and Objection
Install Frida Client
Python
pip install frida-tools # CLI tools
pip install frida # Python bindings

MacOS with Python 3.6+
Python 3.6+ does not rely on MacOS' openSSL anymore. It comes with its own openSSL bundled and doesn't have access on MacOS' root certificates.

So, before installing frida, you should run this command:
cd /Applications/Python\ 3.6/
./Install\ Certificates.command

Node JS
npm install frida # Node.js bindings
Installing objection
pip install objection

Last updated