12.04 - uninstalling Atlas properly - Ask Ubuntu
https://askubuntu.com/questions/626351/uninstalling-atlas-properly
1 Answer 1 1 Answer 1 1 If you want to remove the ATLAS development packages, they are actually called libatlas-dev and libatlas-base-dev. However, there should be no need to uninstall these packages in order to use OpenBLAS: the update-alternatives mechanism will take care of things for you, automatically assigning higher priority to the OpenBLAS version of libblas when you install it e.g. with only the ATLAS development packages installed you should see $ update-alternatives --get-selections | grep libblas
libblas.so auto /usr/lib/atlas-base/atlas/libblas.so
libblas.so.3 auto /usr/lib/atlas-base/atlas/libblas.so.3 then installing OpenBLAS development packages using $ sudo apt-get install libopenblas-dev and checking again you should see $ update-alternatives --get-selections | grep libblas
libblas.so auto /usr/lib/openblas-base/libblas.so
libblas.so.3 auto /usr/lib/openblas-base/libblas.so.3 You should be able to swap between them using sudo update-alternatives --config libblas.so and following the on-screen instructions. Follow answered May 21 '15 at 12:58 steeldriver 114k1717 gold badges196196 silver badges285285 bronze badges 3 i tried them, and it seems it already had this, ih@cap8:~$ update-alternatives --get-selections | grep libblas libblas.so auto /usr/lib/openblas-base/libopenblas.so libblas.so.3gf auto /usr/lib/openblas-base/libopenblas.so.0 ih@cap8:~$ sudo apt-get install libopenblas-dev [sudo] password for ih: Reading package lists... Done Building dependency tree Reading state information... Done libopenblas-dev is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 512 not upgraded. – May 21 '15 at 18:43 ih@cap8:~$ update-alternatives --get-selections | grep libblas libblas.so auto /usr/lib/openblas-base/libopenblas.so libblas.so.3gf auto /usr/lib/openblas-base/libopenblas.so.0 – May 21 '15 at 18:44 But still it has the same error... – May 21 '15 at 18:44 | Not the answer you're looking for? Browse other questions tagged 12.04 package-management uninstall or ask your own question. Not the answer you're looking for? Browse other questions tagged or .
DA: 80 PA: 49 MOZ Rank: 32