How do I install a library with pip console?

I downloaded the python library package (for example uncompile2) from GitHub. How can I install it in Qpython from a directory in my Android device using pip-console? Or at least try installing ...

+3


source to share


2 answers


You can install it directly via pip console, just type "pip install"

Or you can create a .sh file with content



python /your/path/to/the/package/setup.py install

      

Or at least I think so.

0


source


You can copy the modules you want to install to the sites-packages folder



with a file manager open the folder:
/sdcard/com.hipipal.qpyplus/lib/python2.7/site-packages/


this is where you can put the modules, I haven't tried it with pip console.

0


source







All Articles