gem 安装ruby插件的时候 出现了一个错误 Installing rmagick 2.13.4 with native extensions Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension. ... Can't install RMagick 2.13.4. You must have ImageMagick 6.4.9 or later. 查看现在系统的设置(系统环境位cent…
近期练习flask写个blog, 安装flask扩展时 pip install Flask-WTF 报ERROR: Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/itsdangerous' Consider using the `--user` option or check the permission…
本人在CentOS7上在 执行”gem install rmagick“是报错,具体情况如下: 报错如下: [root@localhost ~]# gem install rmagick -v '2.16.0'Building native extensions. This could take a while...ERROR: Error installing rmagick: ERROR: Failed to build gem native extension. current direc…
今天 使用 刷机精灵后 在使用android studio 时发现 adb 无法正常使用.   于是 想重启 adb.exe , 直接在DOS里杀掉adb输入:adb kill-server 再启动输入:adb start-server 输入 cmd 命令 发现还是不行. 发现端口被占用 , 在任务栏中找到  2272 的 任务 kill . adb 便 恢复了正常使用 : 操作  如下图: C:\Users\kelvin>adb kill-server error: unknown host…
android sdk启动报错error: could not install *smartsocket* listener: cannot bind to 127.0.0.1:5037: 问题原因:端口5037被占用 解决方案: 方式一:可以用cmd命令 C:\Users\Administrator>netstat-ano | findstr "5037"                 <<<<<-------------查看5037 被谁占用,…
SSDB简介 SSDB是一个C/C++语言开发的高性能开源NoSQL数据库服务器,支持Key-value, Keyhashmap, Key-zset(sorted set) 等数据结构,十分适合存储数亿条级别的列表, 排序表等集合数据, 是Redis的替代和增强方案. SSDB的性能很突出,与Redis基本相当了,Redis是内存型,容量问题是弱项,并且内存成本太高,SSDB针对这个弱点,使用硬盘存储,使用Google高性能的存储引擎LevelDB,适合大数据量处理并把性能优化到Redis级别,…
用户MYSQL数据库迁移后,遇到报错MySQL Error:Can't find file (errno: 13 - Permission denied)使用以下指令重新设置所有者和权限,依然不能解决. [root@ ~]# chown 501:501 -R /www/server/data/comdb [root@~]# chmod 666 -R /www/server/data/comdb [root@~]# service mysqld restart 经万维景盛工程师研究,再用这个指令 …
在终端输入adb命令,出错如下: localhost:work zhangyg$ adb devices List of devices attached adb server version (32) doesn't match this client (36); killing... error: could not install *smartsocket* listener: Address already in use ADB server didn't ACK * failed to…
报错:ERROR: Could not install packages due to an EnvironmentError: [WinError 5] 拒绝访问.: 'E:\\Anoconda\\Lib\\site-packages\\cv2\\cv2.cp37-win_amd64.pyd'Consider using the `--user` option or check the permissions. 解决方案:直接在install 后面加一个--user就可以了…
安装xlrd包的时候,总是报错:ERROR: Could not install packages due to an EnvironmentError: HTTPConnectionPool (host='127.0.0.1', port=8888): Max retries exceeded with url: http://pypi.douban .com/simple/ (Caused by ProxyError('Cannot connect to proxy.', NewConnec…
因为安装redmine,缺少rmagick,使用bundle install安装依赖的gem,报错如下: 然后,网上查询一下,都是ubuntu系统下的解决方案. centos下正确的解决方法如下: yum install ImageMagick ImageMagick-devel 然后再安装依赖包: bundle install…
问题描述: 配置完 nginx 两个虚拟机后,客户端能够访问原始的server ,新增加的 server 虚拟机 不能够访问,报错如下页面 解决过程: 1. 查看报错日志[root@mysql03 nginx]# cat logs/error.log 2017/06/15 04:00:57 [error] 6702#0: *14 "/root/html/index.html" is forbidden (13: Permission denied), client: 10.219.24…
http://segmentfault.com/q/1010000000257571 想要把本地的分支推送到远端 git push chucklu zhCN_v0.13.1 zhCN_v0.13.1 正确的用法是 git push chucklu zhCN_v0.13.1 或者 git push chucklu zhCN_v0.13.1:zhCN_v0.13.1…
问题:用create-next-app创建应用报错,部分模块没有安装,react.react-dom.next等模块安装失败,如下图所示 操作环境: 系统:Ubuntu 16.04.4 LTS npm:6.4.1 解决方法:命令前加上“sudo”,react.react-dom.next等模块创建成功,如图:…
问题原因:端口5037被占用 解决方案: 方式一:可以用cmd命令 C:\Users\Administrator>netstat -ano | findstr "5037" <<<<<-------------查看5037 被谁占用,然后杀掉 TCP   127.0.0.1:5037        0.0.0.0:0             LISTENING       4524 TCP   127.0.0.1:5037        127.0.…
问题原因:安装docker之前有安装cockpit-docker服务 解决方法:卸载docker-ce [root@localhost ~]# yum list installed | grep docker docker-ce.x86_64 18.06.1.ce-3.el7 @docker-ce-stable [root@localhost ~]# yum remove -y docker-ce.x86_64 [root@localhost ~]# mv /var/lib/docker /tm…
1.安装之前确认你已经安装好了mysql 2.连接mysql创建数据库 mysql -u root –p CREATE DATABASE redmine CHARACTER SET utf8; CREATE USER 'redmine'@'localhost' IDENTIFIED BY 'my_password'; GRANT ALL PRIVILEGES ON redmine.* TO 'redmine'@'localhost'; 3.下载(http://www.redmine.org/ )…
Go 1.13发布的功能还有一个值得深入研究的,就是对Error的增强,也是今天我们要分析的 Error Wrapping. 背景 做Go语言开发的,肯定经常用error,但是我们也知道error非常弱,只能自带一串文本其他什么都做不了,比如给已经存在的error增加一些附加文本,增加堆栈信息等都做不了.如果我们想给error增加一些附加文本怎么做呢?有两种办法: 第一种: newErr:=fmt.Errorf("数据上传问题: %v", err) 通过fmt.Errorf函数,基于已…
46 error argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "--save-dev" "react-handsontable"47 error node v6.9.448 error npm v3.10.1049 er…
安装rmagick gem A new release 2.13.2 of RMagick is now available on github as well as rubygems. This release will fix the installation issues due to ruby 1.9.3 and ImageMagick 6.8+. You can install it the usual way with bundle by adding to Gemfile: gem…
UPDATE 7/7/13: If you want to use Catalyst drivers version 12.8 you will find that X won’t start (error msg: /usr/lib/xorg/modules/drivers/fglrx_drv.so: undefined symbol: noXFree86DRIExtension) if you installed CentOS 6.4. Catalyst > 12.8 will work f…
原文:http://www.dev-metal.com/how-to-setup-latest-version-of-php-5-5-on-ubuntu-12-04-lts/ 最近遇到了要在ubuntu 12.04 上升级php版本的问题,下面是升级php到最新的版本的方法: Please note: This works fine. But this package will also upgrade your apache to version 2.4 which has different…
目录 目录 什么是Kubeadm? 什么是容器存储接口(CSI)? 什么是CoreDNS? 1.环境准备 1.1.网络配置 1.2.更改 hostname 1.3.配置 SSH 免密码登录登录 1.4.关闭防火墙 1.5.关闭交换分区 1.6.关闭 SeLinux 1.7.配置 IPTABLES 1.8.安装 NTP 1.9.升级内核 2.安装 Docker 18.06.1-ce 2.1.删除旧版本的 Docker 2.2.设置存储库 2.3.安装 Docker 2.4.启动 Docker 3.…
node-pre-gyp WARN Using needle for node-pre-gyp https download node-pre-gyp WARN Pre-built binaries not installable for fsevents@1.2.7 and node@10.14.1 (node-v64 ABI, unknown) (falling back to source compile with node-gyp) node-pre-gyp WARN Hit error…
一.部署环境 VMware Workstation 10 centos7 二.主机配置(每台主机都要做) 主机名 ip cpu ram master 192.168.137.10 3G node1 192.168.137.11 3G 1.每台主机在 /etc/hosts 添加以下内容: 2.关闭防火墙.selinux.swap systemctl stop firewalld systemctl disable firewalld 修改:vim /etc/selinux/config swapo…
软件环境清单 kubeadm.x86_64  Version :1.13.1-0 kubelet.x86_64 Version : 1.13-1-0 kubectl.x86_64 Version : 1.13-1-0 kubernetes-cni.x86_64  Version : 0.6.0-0 docker  Version 18.06.1-ce 一.更改系统部署参数 # 关闭 firewalld 防火墙systemctl stop firewalld systemctl disable f…
npm install报错问题解决 问题: E:\CodeSpace\GitlabTest\desktop>npm install > lifeccp-desktop@1.1.9 postinstall E:\CodeSpace\GitlabTest\desktop> install-app-deps Installing app dependencies for arch x64 to E:\CodeSpace\GitlabTest\desktop\app > sqlite3@3…
npm安装parse-server的过程中遇到了2次错误 尝试1 ganiks@ganiks-ubuntu-trusty-64:~$ sudo npm i -g parse-server npm WARN deprecated uws@10.148.1: stop using this version /usr/bin/parse-server -> /usr/lib/node_modules/parse-server/bin/parse-server > bcrypt@3.0.3 insta…
kubeadm是Kubernetes官方提供的用于快速部署Kubernetes集群的工具,本篇文章使用kubeadm搭建一个单master节点的k8s集群. 节点部署信息 节点主机名 节点IP 节点角色 操作系统 k8s-master 10.10.55.113 master centos7.6 k8s-node1 10.10.55.114 node centos7.6 节点说明 master:控制节点.kube-apiserver负责API服务,kube-controller-manager负责…
tf1.13.1 及 tf2.0.0  相关依赖及版本 硬件说明:显卡NVIDIA-GEFORCE-GTX-1060 1.驱动版本检查,并且更新显卡驱动[这一步很重要,你的驱动版本低了,cuda及cudnn就可能出错] 错误:DLL load failed: 找不到指定的模块. cmd中输入:nvidia-smi 显卡驱动已经是最新的了.如果不是最新的显卡驱动,需要手动更新一下. 补充:驱动version对应 cuda 和 cudnn的版本 我们安装的cuda 是10.0.130   所以:wi…