搭建caffe環境時,在最後進行 」$make all」操作時,報錯找不到 「hdf5.h」,找了半天原因,於是重新再安裝 「hdf5」
[html]
view plain
copy
1.
$ sudo apt-get libhdf5-serial-dev
相應的需要更改"makefile.config"檔案中的包含目錄
ctrl+f
找到include_dirs:=$(python_include)/usr/local/include
然後在後面加上
"serial"
的包含目錄,即:
include_dirs:=$(python_include)/usr/local/include/usr/include/hdf5/serial/
接著需要更改相應的"makefile"檔案,找到
libraries+=glog gflags protobuf boost_system boost_filesystem m hdf5_hl hdf5
更改最後兩項為:
libraries+=glog gflags protobuf boost_system boost_filesystem m hdf5_serial_hl hdf5_serial
就可以了,繼續make了。
如果不行,就參考上一步caffe安裝過程中對makefile.config和makefile修改方式。
ubuntu16 04新建使用者後找不到cuda
當你在伺服器上新建乙個使用者後,輸入nvcc v提示the program nvcc is currently not installed.you can install it by typing apt get install nvidia cuda toolkit,通過ls usr local ...
ubuntu 16 04網絡卡找不到eth0
自15版本開始就不叫eth0。可以通過ifconfig進行檢視 其中enp3s0才是網絡卡的名稱,lo為環路。參考 1 sudo vi etc default grub找到grub cmdline linux 改為grub cmdline linux net.ifnames 0 biosdevnam...
Ubuntu16 04搜尋不到wifi列表
用了很長時間的ubuntu16.04,之前一直可以連的上無線網,突然有一天wifi列表裡什麼也搜不到了,本來以為網絡卡有問題,但我在windows系統下可以正常連線wifi 我的是ubuntu win10 在網上搜了好久,試驗了好多都沒有用,可能那些方法不適於我的情況,最後,在找了好幾天後,終於找到...