Future versions of macOS won’t include scripting language runtimes by default
From the macOS 10.15 Beta Release Notes:
> Scripting language runtimes such as Python, Ruby, and Perl are included in macOS for compatibility with legacy software. Future versions of macOS won’t include scripting language runtimes by default, and might require you to install additional packages. If your software depends on scripting languages, it’s recommended that you bundle the runtime within the app. (49764202)
[1]: https://developer.apple.com/documentation/macos_release_notes/macos_10_15_beta_release_notes
13 comments
[ 3.5 ms ] story [ 39.8 ms ] threadI can use the bc command instead (it’s an old Unix command) but it’s far less handy. See it’s man page.
There’s also dc, the even less used reverse Polish notation calculator. It is a standard Unix command that predates bc.
The dc “language” is older than the C, Awk, Perl, or any other programming language still found on Unix systems. It is written in C’s predecessor, the language B.
You can tell that bc and dc are early Unix commands from their names, just two characters long.