我在qingcheng_interface中Lifecycle目录下执行install命令后报错"Failed to execute goal on project...Could not resolve dependencies for project...",大意就是当Maven无法下载依赖项. 解决办法: 我的项目结构是一个父项目多个子模块的目录,这样的问题是由于没有首先对父项目进行clean和install,所以在父项目下有的子项目在首次运行clean和install前应该先运…
看了许多解决方案,但是对于新手来说并不友好,不是特别清楚 报错内容: System has not been booted with systemd as init system (PID 1). Can't operate.       Failed to connect to bus: Host is down 解决方法: docker run -itd   --privileged --name myCentos centos /usr/sbin/init 创建完成后: 请使用以下命令进入…
window7 64位下安装第三方包,,比如安装yaml的exe执行文件,会 报错及解决:python version 2.7(3.4) required,which was not found in the registry 方法:新建一个register.py 文件,把一下代码贴进去,保存 # # script to register Python 2.0 or later for use with win32all # and other extensions that require P…
一.报以下错误: Using CATALINA_BASE:   /home/apache-tomcat-7.0.72Using CATALINA_HOME:   /home/apache-tomcat-7.0.72Using CATALINA_TMPDIR: /home/apache-tomcat-7.0.72/tempUsing JRE_HOME:        /home/jdk1.7.0_79/jreUsing CLASSPATH:       /home/apache-tomcat-7.…
系统:win7IDE:pycharm Python版本:2.7 安装第三方插件是报错:  报错原因与编码有关,pip把下载的临时文件存放在了用户临时文件中,这个目录一般是C:\Users\用户名\AppData\Local\Temp,目录名中有中文,显然ascii这种编码是不支持的,因为我的用户名是中文的所以出现了错误,解决方法: 找到python2.7目录下的Lib文件夹中的ntpath.py文件,打开,找到def join(path, *paths): 这个方法下添加一下两行代码: relo…
创建容器设置密码 安装 openssh-server 启动出错 在容器内 使用 /usr/sbin/sshd -d 启动报错? [root@9d41c7f36c5e tmp]# /usr/sbin/sshd -d debug1: sshd version OpenSSH_7., OpenSSL Jan debug1: key_load_private: No such file or directory debug1: key_load_public: No such file or direc…
Windows环境下使用pip命令安装Python模块mysqlclientpip install mysqlclient安装过程报错  [error] Microsoft Visual C++ 14.0 is required 于是更换另外一种方法安装,到这个网站上下载mysqlclient安装包https://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy 由于本地安装的是python3.6版本,于是下载 mysqlclient-1.3.13-cp36-c…
windows在执行如下命令,安装scrapy的过程中会报错: pip install scrapy 报错分析: windows环境下,会出现如下错误: 1.提示的错误是编译环境的问题,字面意思看需要安装Microsoft Visual C++ 14.0 ,但是这个东西安装起来很麻烦,可以自己看一下电脑,即便已经安装Microsoft Visual C++ 14.0,也可能会报这个错误.所以,我们一般就考虑python编译文件.whl文件的方式安装. 2.这个错误提示我们缺少一个win32api…
本人的环境是基于centos7下来安装的 一.安装docker  下载docker安装包,下载地址:https://download.docker.com/linux/static/stable/x86_64/ 下载到本地后解压 tar -zxf docker-.tgz  将解压出来的docker文件内容移动到 /usr/bin/ 目录下 cp docker/* /usr/bin/ 将docker注册为service 新建文件 vim /etc/systemd/system/docker.ser…
报错如图: 1.解决办法    先安装gcc插件.删除redis解压后文件.重新解压…