I’m not sure about what the problem here is. If the target user cannot be bothered to learn about “the shell” why should they care about the Python vendor? And the procedure shown is not easy peasy for a newbie.
Escaping from Anaconda's Stranglehold on macOS
21–30 of 286 posts
Re: Escaping from Anaconda's Stranglehold on macOS
#22Earlier quoted context omitted.
TFA is for students who are (presumably) very early in their programming careers. Python is often billed as a good language for beginners because it does not require the author to keep track of curly braces or line-ending semicolons, and it lets the author focus less on syntax and more on reasoning with code. Wouldn't it be nice if the beginner could focus on learning Python instead of having to learn stupid minutiae…
At some point they'll have to learn about the file system, shell, network. Otherwise there is little point in learning Python. Octave, Matlab, Mathematica, Julia, R are superior for small programs with just a couple of functions. Escaping the stranglehold of Python would be the next project!
Re: Escaping from Anaconda's Stranglehold on macOS
#23Nobel laureate Paul Romer sharing some Python advice is a little strange!
Whatever project solves Python dependency management deserves to get a Nobel in Economics for saving humanity billion of hours per year.
Re: Escaping from Anaconda's Stranglehold on macOS
#24I collaborate with people that use macOS while I use Linux. For reproducible environments, Nix has served us well. Despite the myth, it is not hard to use unless you need to package something complicated or messy. Then it may become hard. The advantage of Nix is total version reproducibility and declarativeness. It's quite reassuring to know things are exactly the same on all computers.
I am fully on board with having reproducible declarative setups, line Nix or Guix offer. I want to note though, that the versions and original code may be the same, but it can still happen that something behaves differently on another OS. The code of some version of a package can intentionally do things differently on another OS. So you are not 100% safe from MacOS disturbing things. I wish though, that at my job peo…
Most of package managers don't offer that guarantee. Only Guix has a similar level of assurance?
Nix openly recognizes outputs are different per platform, x86_64-linux is different from aarch64-darwin. Impossible not to, as ultimately architectures may behave differently.
Re: Escaping from Anaconda's Stranglehold on macOS
#25Earlier quoted context omitted.
TFA is for students who are (presumably) very early in their programming careers. Python is often billed as a good language for beginners because it does not require the author to keep track of curly braces or line-ending semicolons, and it lets the author focus less on syntax and more on reasoning with code. Wouldn't it be nice if the beginner could focus on learning Python instead of having to learn stupid minutiae…
At some point they'll have to learn about the file system, shell, network. Otherwise there is little point in learning Python. Octave, Matlab, Mathematica, Julia, R are superior for small programs with just a couple of functions. Escaping the stranglehold of Python would be the next project!
Re: Escaping from Anaconda's Stranglehold on macOS
#26Earlier quoted context omitted.
TFA is for students who are (presumably) very early in their programming careers. Python is often billed as a good language for beginners because it does not require the author to keep track of curly braces or line-ending semicolons, and it lets the author focus less on syntax and more on reasoning with code. Wouldn't it be nice if the beginner could focus on learning Python instead of having to learn stupid minutiae…
At some point they'll have to learn about the file system, shell, network. Otherwise there is little point in learning Python. Octave, Matlab, Mathematica, Julia, R are superior for small programs with just a couple of functions. Escaping the stranglehold of Python would be the next project!
Sure, but I would argue that overwhelming someone with all those topics at the beginning is counterproductive.
Re: Escaping from Anaconda's Stranglehold on macOS
#27Re: Escaping from Anaconda's Stranglehold on macOS
#28This is exactly why you should learn to use your tools properly, learn just a tiny tiny tiny bit of posix shell (which works for ALL posix shells sh, tcsh, bash, zsh etc...) so that you can understand what the heck is going on.
Like seriously, this is day one stuff. Your shell loads a configuration file and you can set programs to run on start, or configure shell options, set aliases etc... This is nuts man.
in fact I was so baffled that I wrote my own article response https://sweetbbak.github.io/post/response-to-mac-anaconda/
Re: Escaping from Anaconda's Stranglehold on macOS
#29But: what's sauce for the end user goose is sauce for the developer gander. Developers are users. Give developers good visual tools. Sadly I don't think there is a visual front end to git,, for example, that is any good among the handful I have tried and the dozens that attempt to make git safe, discoverable, and visually obvious.
Re: Escaping from Anaconda's Stranglehold on macOS
#30You can just keep Anaconda and just use it as a pyenv replacement, e.g.: conda create -n "myenv" python=3.8 conda activate myenv Then just use pip in your environment, if you don’t like conda packages. Not sure what the paragraph about being able to install multiple Python versions after getting rid of Anaconda is about.