frida installing on windows
ufoevangel opened this issue · 1 comments
ufoevangel commented
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
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 -
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
then run pip --version
to verify the installation.