Ubuntu卸载Eigen

Eigen,

背景

[cpp] view plain copy
  1. sudo apt-get install libeigen3-dev  

安装版本是最新的,我要跑一个Demo需要的版本是3.1.0,所以用

[cpp] view plain copy
  1. sudo updatedb  
  2. locate eigen3  

得到eigen库的位置

[cpp] view plain copy
  1. sudo rm -rf /usr/include/eigen3 /usr/lib/cmake/eigen3 /usr/share/doc/libeigen3-dev /usr/share/pkgconfig/eigen3.pc /var/lib/dpkg/info/libeigen3-dev.list /var/lib/dpkg/info/libeigen3-dev.md5sums  

直接删掉这些文件或文件夹,卸载了eigen3

从eigen官网,下载3.1.0版本,

http://eigen.tuxfamily.org/index.php?title=Special%3AAllPages&from=&to=&namespace=100

得到一个压缩包eigen-eigen-bf4cb8c934fa.tar.bz2,提取,在文件夹内执行

[cpp] view plain copy
  1. mkdir build  
  2. cd build  
  3. cmake ..  
  4. make install  

eigen3.1.0已经安装好了

你可能感兴趣的:(Ubuntu卸载Eigen)