Τη Σάββατο, 16 Νοεμβρίου 2013 5:20:51 μ.μ. UTC+2, ο χρήστης Mark Lawrence 
έγραψε:
> On 16/11/2013 13:45, Ferrous Cranus wrote:
> 
> > What the difference between locate and find?
> 
> 
> 
> I neither know nor care as it's not Python related.
> 
> 
> 
> >
> 
> > and seen find show me some results, what now?
> 
> >
> 
> > 'rm -rf' those files or i will break something?

> Ditto.
Doe 'ditto' mean 'yes'?
Here si what i ahve tried:

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 [~]# 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 [~]# 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

many files of python's 3.4a have been deleted this way, but the aboe displayed 
persist. 

> > and then how i'am gonna install those 2 modules for python 3.3.2?

> I assume you can navigate to the Python 3.3.2 directory where pip is 
> installed and run it from there.

root@secure [~]# which python3
/usr/bin/python3

root@secure [~]# cd /usr/bin/python3
-bash: cd: /usr/bin/python3: Not a directory

It seems that i cannot even cd into this folder, wtf....
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to