Install androguard in python3 environment

Recently I need to use androguard, search for tutorials on the Internet, all based on py2.7 (presumably because linux comes with py2.7, the big guys use linux for development) for
a long time, I found that py3.x friends can pass two One way to install:
1. Download the GitHub project, unzip it to the python installation directory, enter the setup.py directory, open the command line, and run: python setup.py install to install the androguard 3.4.0 version

https://github.com/androguard/androguard

2. Direct pip install androguard installation, I installed androguard3.5 version.
Both versions support py3.x version!
Insert picture description here
This is an explanation attached to GitHub. If the English is not good, it will not be translated.

Guess you like

Origin blog.csdn.net/liulanba/article/details/114262755