root@secure [~]# find / -name python3.4 | rm -rf root@secure [~]# locate python3.4 /root/.local/lib/python3.4 /usr/local/include/python3.4m /usr/local/lib/libpython3.4m.a /usr/local/lib/python3.4 /usr/local/share/man/man1/python3.4.1
still there!!!
root@secure [~]# locate python3.4 | rm -rf root@secure [~]# locate python3.4 /root/.local/lib/python3.4 /usr/local/include/python3.4m /usr/local/lib/libpython3.4m.a /usr/local/lib/python3.4 /usr/local/share/man/man1/python3.4.1 root@secure [~]#
still there!!!
==================================
The Questions Are:
DELETE ALL REMAINS OF PYTHON 3.4a
HOW AM'I I GOING TO DELETE THESE 2 PACKAGES THAT PIP INSTALLED (pymysql, pygeoip)
HOW CAN I PROPERLY INSTALL THE ABOVE 2 WRONGLY PLACED MODULES (pymysql, pygeoip) SO THEY CAN BE USED BY PYTHON 3.3.2 AND NOT BY PYTHON 2.6.6
===================================
CentOS 6.4
wget http://python.org ./configure make make install
and i have finally removed it as:
find / -name python3.4 -exec rm -rf {} \;
===============
I will kindly ask you please to show me a way to:
pip install pymysql pip install pygeoip
So i will not receive this error at http://superhost.gr Those modules are installed into m system but for some reason i suspect they work under 2.6.6 and not under 3.3.2
python3.4 is gone at this stage. Now if i only could install pip for Python 3.3.2 Here is what i have tried:
root@secure [~]# which python3 /usr/bin/python3 root@secure [~]# which pip /usr/bin/pip root@secure [~]# yum install pip3 Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: centos.secrel.com.br * epel: mirror.imt-systems.com * extras: centos.secrel.com.br * remi: mirror5.layerjet.com * updates: mirrors.ucr.ac.cr Setting up Install Process No package pip3 available. Error: Nothing to do
Where to find 'pip3' for Python 3.3.2?