6 Aug 2012 11:48
Re: how to uninstall numpy
Scott Sinclair <scott.sinclair.za <at> gmail.com>
2012-08-06 09:48:45 GMT
2012-08-06 09:48:45 GMT
On 6 August 2012 11:04, Petro <x.piter <at> gmail.com> wrote: > This is a general python question but I will ask it here. To > install a new numpy on Debian testing I remove installed version with > "aptitude purge python-numpy" download numpy source code and install > numpy with "sudo python setup.py install". If I want to remove the installed > numpy how do I proceed? Assuming your system Python is 2.7, your numpy should have been installed in /usr/local/lib/python2.7/site-packages/ (or /usr/local/lib/python2.7/dist-packages/ as on Ubuntu?) So something along these lines: $ sudo rm -rf /usr/local/lib/python2.7/site-packages/numpy/ $ sudo rm -rf /usr/local/lib/python2.7/site-packages/numpy-*.egg* $ sudo rm -rf /usr/local/bin/f2py Cheers, Scott
RSS Feed