frida / frida-website

Frida's website
MIT License
83 stars 191 forks source link

frida installing on windows #174

Closed ufoevangel closed 4 years ago

ufoevangel commented 4 years ago

hey i installed last version of python but command of installing is invalid

C:\Users\USERl>pip install frida 'pip' is not recognized as an internal or external command, operable program or batch file.

manishsahani999 commented 4 years ago

The problem seems that your pip is not installed correctly, try checking the pip version for ensuring it's working.

If you are still unable to use pip, you can use a super-easy way to install by running get-pip script (read about the installation here - https://pip.pypa.io/en/stable/installing/).

steps to install pip -

  1. curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
  2. python get-pip.py

then run pip --version to verify the installation.