1. 程式人生 > >Ubuntu14.4 環境配置相關

Ubuntu14.4 環境配置相關

安裝cmake

如果遇到錯誤需要安裝C++編譯器: apt-get install gcc g++
參考東京的雨不會淋溼首爾

Error when bootstrapping CMake:
Cannot find a C++ compiler supporting C++11 on this system.
Please specify one using environment variable CXX.
See cmake_bootstrap.log for compilers attempted.

make
sudo make install

參考edashixi
使用make install 出錯:

因為cmake 會預設安裝到/usr/local/bin下面,所以使用 make install 後出現以下錯誤: 
      CMake Error at cmake_install.cmake:36 (FILE):file cannot create directory: 
      /usr/local/include/cmake-3.0. Maybe need administrative privileges.

cmake --version檢視cmake版本資訊

解除安裝cmake

參考正午之陽

解除安裝:
1>使用 sudo apt-get 安裝:sudo apt-get remove cmake
2>從原始碼安裝
首先到cmake的安裝目錄下找到install_manifest.txt,txt中儲存了所有cmake的附屬檔案的安裝目錄,將txt中顯示的檔案全部刪除,即可完成對於cmake的解除安裝。
例如,博主的檔案安裝路徑為/usr/local/share/cmake* 、/usr/local/bin/cmake等,執行以下命令:
sudo rm -rf /usr/local/share/cmake-


sudo rm -rf /usr/local/bin/cmake-*

Ubuntu刪除或移動帶鎖資料夾或檔案的方法

資料夾右下帶鎖,說明該檔案只能讀爾不能操作,要對它進行操作時提示許可權不夠。
解決方法:
sudo chmod -R 777 路徑(資料夾或檔案)
執行該條命令後,鎖消失。

ubuntu安裝配置python-dev

echo "deb http://us.archive.ubuntu.com/ubuntu/ precise-updates main restricted" | sudo tee -a /etc/apt/sources.list.d/precise-updates.list  
sudo apt-get update  
sudo apt-get install python2.7-dev
sudo apt-get install python-dev

ubuntu 安裝 pip 及 pip 常用命令

更新系統包
sudo apt-get update
sudo apt-get upgrade
安裝Pip
sudo apt-get install python-pip
檢查 pip 是否安裝成功
pip -V

安裝scipy錯誤

numpy.distutils.system_info.NotFoundError: no lapack/blas resources found

sudo apt-get install gfortran libopenblas-dev liblapack-dev
pip install scipy