Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing Python on iSH

Tags:

python

Not long ago my computer broke and I am stuck on an iPad. I installed iSH from the AppStore. Now I want to download Python and make sure pip works.

I have tried apk add python, which lead to the pip issue, but pip installing is important for me. I have also found other ways using yam or apt(-get), but I do not know how to download either of them.

like image 882
Number Basher Avatar asked Nov 01 '25 11:11

Number Basher


1 Answers

According information that you provided iSH using virtual environment with Alpine Linux x86 under the hood (I little bit simplify explanation, so it is not 100% correct. You can see details here).

So if you want to install pip you have to search how to install pip in Alpine Linux. You will find many answers like that:

apk add --update-cache python3 py3-pip

This information applicable to any other package that you will try to install. Not just pip.

like image 198
rzlvmp Avatar answered Nov 04 '25 02:11

rzlvmp