Linux command to list all the executable Python versions

zawhtutwin

Zaw Htut Win

Posted on July 26, 2023

Linux command to list all the executable Python versions
sudo find /usr/bin -type f -executable -iname 'python*'
Enter fullscreen mode Exit fullscreen mode

This will find the executable files start with 'python' inside /usr/bin directory.

💖 💪 🙅 🚩
zawhtutwin
Zaw Htut Win

Posted on July 26, 2023

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related