1. 设置网络 设置网络时,一定要设置好网卡,第一个网卡一定要设置为‘br0’(如下图),设置为其他的上不去网. 修改网络配置文件,命令:sudo gedit /etc/network/interfaces 单个网卡配置文件 # interfaces() file used by ifup() and ifdown() auto lo iface lo inet loopback #设置本地环回 auto eth0 iface eth0 inet static #设置静态IP address…
一.apt安装 sudo apt-get install libopenblas-dev 二.手动从source安装 1. 下载OpenBLAS并编译 git clone https://github.com/xianyi/OpenBLAS.git cd OpenBLAS make -j8 sudo make PREFIX=/usr/local/OpenBLAS install 2. 修改Caffe配置文件以下几行 # open for OpenBlas BLAS := open # Custo…