我正在尝试在ubuntu上安装caffe。在网站http://caffe.berkeleyvision.org/install_apt.html上,其中一个步骤要求我输入
# glog
wget https://google-glog.googlecode.com/files/glog-0.3.3.tar.gz
tar zxvf glog-0.3.3.tar.gz
cd glog-0.3.3
./configure
make && make install
然而,当我输入make&& make install,我收到以下错误
/usr/bin/install: cannot create regular file '/usr/local/lib/libglog.so.0.0.0': Permission denied
make[1]: *** [install-libLTLIBRARIES] Error 1
make[1]: Leaving directory `/home/user/glog-0.3.3'
make: *** [install-am] Error 2
有人请帮忙。谢谢!
答案 0 :(得分:2)
您必须获得授权"编辑像/ urs / *这样的代表...要做到这一点,你可以使用命令 sudo 。 sudo 允许用户使用其他用户的安全权限运行程序,默认情况下是超级用户。
所以你可以做以下两件事之一:
希望有所帮助!