-
Is there any way to install pip on iSH? I tried to install it with "apk add python3" but even though python3 was installed, pip didn't appear. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
You should run It basically downloads pip and setuptools (note that wheel isn't included, so you might want to download it) |
Beta Was this translation helpful? Give feedback.
-
Is there any way to install pip on iSH? I tried to install it with "apk add python3" but even though python3 was installed, pip didn't appear. :( |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
if you are using a jailbroken iphone, you CAN actually use python -m ensurepip via mobileterminal or another terminal app (from the jailbreak repos) and install pip via the method that eolien55 mentioned, however, specifically cause it's ISH, you would need to use the apk add py3-pip command, cause it not only installs it correctly without jailbreak, but it also adds it to the path...you have to manually add the prior method mentioned above to path if you are on a jailbroken device. |
Beta Was this translation helpful? Give feedback.
You should run
python3 -m ensurepip
It basically downloads pip and setuptools (note that wheel isn't included, so you might want to download it)