How do I know what programming languages (I mean their compilers and interpreters) are already pre-installed in Ubuntu? For example, I see that Python is here. If I type python command in the terminal, it turns out that I have python version 2.7.12. But what about other popular programming and scripting languages like Ruby, Perl, C, Lua, awk, Java, PHP, etc. etc. Should I try to launch them in the terminal or try something like language --version one by one, or is there a better way to know this?
Asked
Active
Viewed 7,235 times
4
ThunderBird
- 1,963
- 13
- 22
- 31
A. N. Other
- 207
4 Answers
4
As of latest LTS release , 16.04, Ubuntu comes with Perl 5, GNU awk (used to be mawk), Python 2 and 3 by default. Not entirely sure about C compiler. You may need build-essential package installed
For everything else, use apt-cache policy **package-name** to see if it is installed. You can also view the release manifest files as described in this answer:https://askubuntu.com/a/48894/295286
Sergiy Kolodyazhnyy
- 107,582
2
I wrote a small bash script. Its very basic but its something
#!/usr/bin/env bash
languages="php python go perl mysql c c++ java"
binaries="ls /usr/bin"
for i in $languages ; do
for j in $($binaries); do
if [[ $i == $j ]]; then
echo $i
fi
done
done
fyz
- 131
1
type whereis [program]. if nothing shows up then it is not installed. A rather silly way,but still usable.
Camden
- 647