Open Mrlaolu opened 1 month ago
Hi, I don't have the issue on my local devices. I suspect a temporary or localized issue with GitHub.
By the way, there is no more security: you cannot access .../master
directly, you have to access a specific file (at least on my browser): https://raw.githubusercontent.com/holzschu/a-Shell-commands/refs/heads/master/list
https://raw.githubusercontent.com/holzschu/a-Shell-commands/refs/heads/master/list is ok,I will try to use pkg
later.
By the way,how to use the command ping
to check whether I can connect the .../master
ping raw.githubusercontent.com
should give some information.
I use vpn and connected the .../master
but it show
[~/tmp]$ pkg install llvm-18 Downloading llvm-18 /private/var/containers/Bundle/Application/988F0AA3-E1C6-4B21-85C3-35D207126F10/a-Shell.app/bin/chmod: /private/var/mobile/Conta iners/Data/Application/E0216D3C-696D-4EE9-A4CB-EEC9879641E5/tmp/llvm-18: No such file or directory dash: 0: Can't open /private/var/mobile/Containers/Data/Application/E0216D3C-696D-4EE9-A4CB-EEC9879641E5/tmp/llvm-18 /private/var/containers/Bundle/Application/988F0AA3-E1C6-4B21-85C3-35D207126F10/a-Shell.app/bin/rm: /private/var/mobile/Containe rs/Data/Application/E0216D3C-696D-4EE9-A4CB-EEC9879641E5/tmp/llvm-18: No such file or directory Downloading llvm-18 /private/var/containers/Bundle/Application/988F0AA3-E1C6-4B21-85C3-35D207126F10/a-Shell.app/bin/chmod: /private/var/mobile/Containers/Data/Application/E0216D3C-696D-4EE9-A4CB-EEC9879641E5/tmp/llvm-18: No such file or directory dash: 0: Can't open /private/var/mobile/Containers/Data/Application/E0216D3C-696D-4EE9-A4CB-EEC9879641E5/tmp/llvm-18 /private/var/containers/Bundle/Application/988F0AA3-E1C6-4B21-85C3-35D207126F10/a-Shell.app/bin/rm: /private/var/mobile/Containers/Data/Application/E0216D3C-696D-4EE9-A4CB-EEC9879641E5/tmp/llvm-18: No such file or directory Done
I guess it blame to my poor Internet condition,but how can i solve it
[~/tmp]$ pkg install llvm-18
Downloading llvm-18
/private/var/containers/Bundle/Application/988F0AA3-E1C6-4B21-85C3-35D207126F10/a-Shell.app/bin/chmod: /private/var/mobile/Conta
iners/Data/Application/E0216D3C-696D-4EE9-A4CB-EEC9879641E5/tmp/llvm-18: No such file or directory
dash: 0: Can't open /private/var/mobile/Containers/Data/Application/E0216D3C-696D-4EE9-A4CB-EEC9879641E5/tmp/llvm-18
/private/var/containers/Bundle/Application/988F0AA3-E1C6-4B21-85C3-35D207126F10/a-Shell.app/bin/rm: /private/var/mobile/Containe
rs/Data/Application/E0216D3C-696D-4EE9-A4CB-EEC9879641E5/tmp/llvm-18: No such file or directory
Downloading llvm-18
/private/var/containers/Bundle/Application/988F0AA3-E1C6-4B21-85C3-35D207126F10/a-Shell.app/bin/chmod: /private/var/mobile/Containers/Data/Application/E0216D3C-696D-4EE9-A4CB-EEC9879641E5/tmp/llvm-18: No such file or directory
dash: 0: Can't open /private/var/mobile/Containers/Data/Application/E0216D3C-696D-4EE9-A4CB-EEC9879641E5/tmp/llvm-18
/private/var/containers/Bundle/Application/988F0AA3-E1C6-4B21-85C3-35D207126F10/a-Shell.app/bin/rm: /private/var/mobile/Containers/Data/Application/E0216D3C-696D-4EE9-A4CB-EEC9879641E5/tmp/llvm-18: No such file or directory
Done
I guess that, with what you describe, we'll have to run what pkg
does, but manually. From the error message, it failed at downloading llvm-18
, the script that contains the instructions. Which may be related to restrictions on your network part.
So you'll need to type:
curl -L https://github.com/holzschu/a-Shell-commands/releases/download/0.1/llvm-18.tar.gz -o ~/tmp/llvm.tar.gz --create-dirs --silent
That's the big one, it downloads a large file. You can also download it using Safari here: https://github.com/holzschu/a-Shell-commands/releases/tag/0.1 Then we unpack it:
cd ~/Library/
tar -xzf ~/tmp/llvm.tar.gz
cd -
Then we signal to a-Shell thar we just installed a new SDK:
updateCommands
The last step is optional: download the uninstall information:
curl -L https://raw.githubusercontent.com/holzschu/a-Shell-commands/master/uninstall/llvm-18 -o ~/Documents/.pkg/llvm-18 --create-dirs --silent
env:
By the way,I want to view https://raw.githubusercontent.com/holzschu/a-Shell-commands/master / otherwise but it show 404:Not fount