跳至主要内容

centos安装bazel

wget https://copr.fedorainfracloud.org/coprs/vbatts/bazel/repo/epel-7/vbatts-bazel-epel-7.repo (wget 与后面链接一起输入命令行)
再移动到 /etc/yum.repos.d/目录下 :mv vbatts-bazel-epel-7.repo /etc/yum.repos.d
或者复制:cp vbatts-bazel-epel-7.repo /etc/yum.repos.d
安装:yum install bazel

评论

此博客中的热门博文

ubuntu 添加root登录

Login to your server as root. As the root user, edit the sshd_config file found in  /etc/ssh/sshd_config : vim /etc/ssh/sshd_config ( For details on working with Vim check out our article here !) Add the following line to the file, you can add it anywhere but it’s good practice to find the block about authentication and add it there. PermitRootLogin yes Save and exit the file. Restart the SSH server: systemctl restart sshd or service sshd restart