What kind of laptop doesn't have an ethernet port? Or USB A of any kind? A dongle/dock is damn near a requirement! And in this day and age, why the hell is there no kind of right-click, until you dig through the settings and activate it?
Having fun (not) testing out getting switch things to build with this thing. I couldn't quickly find a mac equivalent to "python3 is python", so I had to learn that 1) The default terminal uses zsh in the latest macos, and even after you learn how to show hidden files, there actually isn't a .zshrc in existence. You have to "touch .zshrc" to create it, then open it, to enter the required "alias python='python3'" (and I think also for pip3? My head hurts...)
But did that take care of EVERYTHING? HELL NO, it didn't. Because for some reason, while building Atmosphere, the build process somehow ends up calling @python in bash, and bash can't find the command "ptython". So I do the same process creating .bashrc. Didn't work. Tried again with .bash_profile. Didn't work. Found out that contrary to what a Google search showed me, python3 is installed in /usr/bin, and not /usr/local/bin (where I found dkp-pacman living happily). And the system will not let you add/touch anything in usr/bin. So... I made an alias (shortcut) of python3 that saved to my desktop, renamed it to python, then moved it to /usr/local/bin, where is asked for my fingerprint or password, but at least let me do it.
Now that I've finally completed the build (changed like 3 .mk files, to say @python3, to complete the build), I'm now cloning fresh, and trying again to see if the alias works.
Aaaaand... it does not. Permission denied. Why? Dunno. But changed my shell to bash, hard quit the terminal and reopened it, then typed "python"... and it ran. Tried to "make" again, and again I hit the error
WTF? Too late now. Going to shower and sleep.
Having fun (not) testing out getting switch things to build with this thing. I couldn't quickly find a mac equivalent to "python3 is python", so I had to learn that 1) The default terminal uses zsh in the latest macos, and even after you learn how to show hidden files, there actually isn't a .zshrc in existence. You have to "touch .zshrc" to create it, then open it, to enter the required "alias python='python3'" (and I think also for pip3? My head hurts...)
But did that take care of EVERYTHING? HELL NO, it didn't. Because for some reason, while building Atmosphere, the build process somehow ends up calling @python in bash, and bash can't find the command "ptython". So I do the same process creating .bashrc. Didn't work. Tried again with .bash_profile. Didn't work. Found out that contrary to what a Google search showed me, python3 is installed in /usr/bin, and not /usr/local/bin (where I found dkp-pacman living happily). And the system will not let you add/touch anything in usr/bin. So... I made an alias (shortcut) of python3 that saved to my desktop, renamed it to python, then moved it to /usr/local/bin, where is asked for my fingerprint or password, but at least let me do it.
Now that I've finally completed the build (changed like 3 .mk files, to say @python3, to complete the build), I'm now cloning fresh, and trying again to see if the alias works.
Aaaaand... it does not. Permission denied. Why? Dunno. But changed my shell to bash, hard quit the terminal and reopened it, then typed "python"... and it ran. Tried to "make" again, and again I hit the error
Code:
bash: python: command not found
WTF? Too late now. Going to shower and sleep.