Closed DevDengChao closed 4 years ago
"How to install an egg" is sovled:
$ pip3 install setuptools
to install easy_install
command line tool.$ easy_install --user frida-12.8.11-py3.6-linux-x86_64.egg
to install the egg only for yourself.Reference: https://setuptools.readthedocs.io/en/latest/easy_install.html#downloading-and-installing-a-package
But I still cannot install frida-tools by using $ pip3 install frida-tools
even if I installed the egg manually.
What happened to this ?
@r0p3cina See frida/frida-python#162.
I tried to install frida by
$ pip3 install frida-tools
but found it stop atRunning setup.py bdist_wheel for frida
for a long time at first. Then I try to find out what happend with$ pip3 install -v frida-tools
, then I get the log below (I'm using aliyun's pip mirror):The key is that it is downloading this item
https://files.pythonhosted.org/packages/8c/6a/b00b270b8af2ae103ee394fcf983b037f0e746cc039ce80df8066e802311/frida-12.8.11-py3.6-linux-x86_64.egg
, I tried to download it with aria2c, but it told me the download may take hours to complete.Then I found the egg file from aliyun:
https://mirrors.aliyun.com/pypi/packages/8c/6a/b00b270b8af2ae103ee394fcf983b037f0e746cc039ce80df8066e802311/frida-12.8.11-py3.6-linux-x86_64.egg
, downloaded within seconds, put it under~/
.But how to install an egg?
$ easy_install install ./the.egg
?I installed the plugin with
pip3 install ez_setup
, and found it appears atpip3 list
, but just nothing happened wheneasy_install -help
.$ pip3 install ./the.egg
?Responed with:
What should I do then?