How to install library with pip-console?

Андрей Коровин picture Андрей Коровин · Jul 20, 2015 · Viewed 9.5k times · Source

I downloaded some python library package (for example uncompile2) from GitHub. How I can install it into Qpython from the directory in my android device with pip-console? Or at least to try install...

Answer

KockaAdmiralac picture KockaAdmiralac · Aug 30, 2015

You could install it directly through pip console, just type "pip install "

Or, you can make a .sh file with contents

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

Or at least I think so.