[Solved] Frida installation stuck at Running setup.py install for frida…Solution

Cause analysis: The reason for this problem is a network problem

You can try to download the frida package from pypi. You will find that the speed is very slow. My speed here in Fujian is only 0.01kb/s
And after opening the scientific Internet, the download speed skyrocketed.
And I also tried to reinstall python, use python310, python38, also tried to install manually, manually start setup.py, also tried to change folder permissions and so on. No matter what, there will be a problem of getting stuck in Running setup.py install for frida….
And by looking up, I found that some setup.py will go to pypi to download other modules.
For the specific research process, please refer to my article http://t.csdn.cn/1g7jm

So I judge that the reason for this problem is that frida’s setup.py needs to go to pypi to download other modules, and the download speed is extremely slow due to the complicated domestic network, which has been stuck in Running setup.py install for frida…

Solution: use a proxy to start pip after scientific Internet access

First, you need to surf the Internet scientifically, and then use the proxy pip to install frida according to the scheme of http://t.csdn.cn/saWEA

pip install frida-tools --proxy='socks5://127.0.0.1:10808'

The installation is successful
The domestic network environment is complex, I pray that a community with a shared future for mankind will be built soon!