Last active
October 21, 2024 23:21
-
-
Save AlecSchneider/f7f8861a1f8cb361a624902f66ab1a8e to your computer and use it in GitHub Desktop.
How to install apk and Python on your iPhone using the iSH Shell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd | |
# you can do this all in one command | |
wget -qO- http://dl-cdn.alpinelinux.org/alpine/v3.12/main/x86/apk-tools-static-2.10.5-r1.apk | tar -xz sbin/apk.static && ./sbin/apk.static add apk-tools && rm sbin/apk.static | |
apk add python3 |
install all in one command
wget -qO- http://dl-cdn.alpinelinux.org/alpine/v3.12/main/x86/apk-tools-static-2.10.5-r1.apk | tar -xz sbin/apk.static && ./sbin/apk.static add apk-tools && rm sbin/apk.static
Thanks @dphans
Thanks @AlecSchneider
I finally install mine
Yebblinux please following below URL
you don't need to download any package just run APK add python3
Hello!
Don’t work this command :
localhost:~$ apk add python3
ERROR: Unable to lock database: Permission denied
ERROR: Failed to open apk database: Permission denied
I need help please.
Try sudo @David-ux-cyber
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great!
But how to install virtual environments package into python installed above?
I can install pip by:
But
apk add py3-venv
not working.