Results 1 to 6 of 6
how do i check if python is installed? im trying to install trac the bug tracker...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 07-07-2008 #1Just Joined!
- Join Date
- Jul 2008
- Posts
- 2
how do i check if python is installed
how do i check if python is installed? im trying to install trac the bug tracker
- 07-07-2008 #2Just Joined!
- Join Date
- Jul 2008
- Posts
- 2
one more thing how do i know if i have mysql installed
- 07-07-2008 #3forum.guy
- Join Date
- May 2004
- Location
- arch linux
- Posts
- 18,733
Welcome to the forums!
You could try the whereis or which command:
Code:whereis python
Code:which python
oz
- 07-22-2008 #4Just Joined!
- Join Date
- Jul 2008
- Posts
- 8
if your path isn't setup (is required to be by which) you can also do a find for the python binary.
Code:find / -name python
- 07-22-2008 #5Just Joined!
- Join Date
- Apr 2005
- Posts
- 88
You can even try using the rpm command rpm -qa | grep python and rpm -qa | grep mysql for confirming whether either of the two packages are installed or not....
- 03-04-2010 #6Just Joined!
- Join Date
- Mar 2010
- Posts
- 1
Thanks a lot



