I have installed python3 on SUSE 13.1 and then uninstalled it. I have also uninstalled python2.7. Then I've installed them again using zypper:
zypper install python
zypper install python3
The installation went fine, but the result is that I no longer have python in my /usr/bin, and I don't know how to start the interpreter at all.
whereis python
python: /usr/lib/python3.3 /usr/lib/python2.7
whereis python3
python3: /usr/lib/python3.3 /usr/share/man/man1/python3.1.gz
Also:
ls /usr/bin/python*
ls: cannot access /usr/bin/python*: No such file or directory
I could manualy create link with ln -s
, but I cannot even find where the binary file is.
Any help? Please.