bhavykalal / apkinspector

Automatically exported from code.google.com/p/apkinspector
0 stars 0 forks source link

Not running on Arch Linux #7

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
If I run on Arch I get errors.

= python 3 =
$ python startQT.py
  File "startQT.py", line 602
    print "IOError"
                  ^
SyntaxError: invalid syntax

= python 2 =
$ python2 startQT.py
Traceback (most recent call last):
  File "startQT.py", line 18, in <module>
    from GetMethods import *
  File "/home/dev/Desktop/apkinspector/GetMethods.py", line 20, in <module>
    import androguard, analysis, androlyze
  File "/home/dev/Desktop/apkinspector/androguard/androlyze.py", line 35, in <module>
    import IPython.ipapi
ImportError: No module named ipapi

I install all dependencies for python2 and python3 
(pyqt,pydot,ipython,python-scipy,apktool).

Original issue reported on code.google.com by ami...@gmail.com on 10 May 2012 at 11:52

GoogleCodeExporter commented 8 years ago
The problem solved.
ipython not support ipappi after version 0.10.2 and arch have version 0.12.
I installed python-pip2 and via pip I installed ipython-0.10.2.

Original comment by ami...@gmail.com on 13 May 2012 at 4:05