Frida installation stuck in Running setup.py install for frida... solution

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

You can try naked link to pypi to download the frida package, and you will find that the speed is very slow. My speed here in Fujian is only 0.01kb/s,
but the download speed has skyrocketed after turning on Science Internet.
And I also tried to reinstall python, use python310, python38, also tried manual installation, manually started setup.py, also tried to change folder permissions and so on. In any case, there will be a problem of getting stuck in Running setup.py install for frida....
And by consulting, 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 the setup.py of frida needs to go to pypi to download other modules, and the download speed is extremely slow due to the complicated domestic network, which leads to being stuck at Running setup.py install for frida...

Solution: Use proxy to start pip after going online scientifically

First of all, 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'

In this way, the installation is successful.
The domestic network environment is complex, and I hope that the community of shared future for mankind will be built soon!

Guess you like

Origin blog.csdn.net/weixin_45518621/article/details/125952648