运行sudo apt-get install nginx时报错有几个软件包无法下载,要不运行 apt-get update 或者加上 --fix-missing 的选项再试试?解决办法 第一步:运行sudo apt-get install nginx 第二步:vim /etc/resolv.conf 修改如下: 如果提示resolv.conf文件为只读文件,先sudo chemod 777 /etc/resolv.conf,然后再vim修改 第三步执行sudo apt-get update 没报…
Centos 7下安装nginx,使用yum install nginx,提示没有可用的软件包. 18 (flaskApi) [root@67 flaskDemo]# yum -y install nginx 19 已加载插件:fastestmirror, langpacks 20 Loading mirror speeds from cached hostfile 21 * base: mirrors.aliyun.com 22 * extras: mirrors.aliyun.com 23…
先说解决方法: 在nginx目录下,查看objs/autoconf.err文件,该文件记录了具体的错误信息 vi objs/autoconf.err 一般就是缺少一些文件,因为我的gcc.g++也是离线包安装的,打开文件显示如下图 我这个就是没有找到libmpfr.so.4嘛,网上找了个mpfr的rpm包装上去就可以了. 具体情况具体处理,这里主要是说明可以在这个文件里看到具体的报错信息. 找到这个文件主要是想着是不是nginx代码有什么判断没走进去,就想看一下这个错是哪儿报的,然后使用了下面这…
编译时指定了用户而没有创建用户导致报错 解决: 查看你添加的用户是什么, [root@localhost nginx]# sbin/nginx -Vnginx version: nginx/1.10.3built by gcc 4.8.5 20150623 (Red Hat 4.8.5-28) (GCC) built with OpenSSL 1.0.2k-fips  26 Jan 2017TLS SNI support enabledconfigure arguments: --user=ng…
百度解释说是因为这个文件在windows下编辑过,windows下每一行的结尾是\n\r, 而linux下每一行结尾是\n,所以只需要删除这个文件中的\r字符就可以了sed -i 's/\r$//' install.sh…
由于linner安装实际上是从 rubygems.org 获得的,而其被墙,所以,需要寻找国内的镜像进行安装: 第一种方法: gem sources --remove https://rubygems.org/ gem sources -a https://ruby.taobao.org/ gem sources -l 如果第一种方法出现以下错误,则进行第二种方法 Error fetching https://ruby.taobao.org/: SSL_connect returned=1 er…
出现这个问题的原因是版本之前的不兼容,我用的django版本是1.8.6 而 这条python manage.py sqlall books 是基于django1.0版本的. 在django1.8.6版本中生成一个表的语句是    $ python manage.py makemigrations books $ python manage.py sqlmigrate books 0001 然后$ python manage.py syncdb  来将表格同步到本地数据库中 ----------…
第一个报错: 最近在练习post请求中上传文件时遇到了一个奇葩事情,两台电脑上写了一模一样的代码,一个运行正常,另一个一片红. 最后了解了一下原因以及解决办法.先记录下关键代码: files = {"files":(r"F:\test.txt","xixihaha")} #直接将目标文件内容xixihaha通过文件test.txt进行上传 r = requests.post(url,files=files)print(r.headers) #前边…
错误如下: Unable to read repository at http://tomcatplugin.sf.net/update/content.xml.Received fatal alert: handshake_failure 由于使用的是Eclipse4.6.3,导致安装时提示不能安装此插件,解决方法如下: 1.网络问题,使用VPN. 2.挂载了VPN之后再拖动一次这个按钮到Eclipse中: 此时基本正常,按[Confirm]进行确认. 3.如果实在不行就手动安装.下面为手动安…
pip install 时报错: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. 解决办法: For Windows 10 if you want use pip in normal cmd, not only in Anaconda prompt. you need add 3 environment paths. like the…
使用pip install TA-Lib 时报错: ERROR: Complete output from command /usr/bin/python3 -u -c 'import setuptools, tokenize;__file__='"'"'/tmp/pip-install-afeznd8w/TA-Lib/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open…
安装locust时, 执行pip install locustio时报错 ERROR: Cannot uninstall 'requests'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall. 解决方式 sudo pip install locustio…
环境 Centos 7(其他Centos或者RHEL一样) 问题 在执行 pip install MySQL-python 时报错如: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-P6IAnP/mysql-python/ 解决方法 缺少mysql-devel yum install -y mysql-devel 如果不行请执行以下安装更多 yum install -y pyt…
1.安装完并remove掉后重新install后没nginx.conf文件 解决办法: apt-get -y --purge remove nginx* apt-get -y autoremove apt -y install nginx 2.搭建文件服务器: apt -y install nginx                                   #安装 cp /etc/nginx/nginx.conf{,.bak}                #备份主配置文件 vim…
vs2017添加引用时报错未能正确加载“ReferenceManagerPackage”包. - AusonSir - 博客园https://www.cnblogs.com/-bao/p/6749419.html 解决方法 启动Developer Command Prompt for VS 2017 执行命令CD C:\Program Files\Microsoft Visual Studio\2017\Community\Common7\IDE\PublicAssemblies 备注:默认的安…
jenkins启动时报错: consider increasing the maximum size of the cache. After eviction approximately [10,239] KB of data 缓存不足 解决办法: D:\tomcat\apache-tomcat-8.5.32\conf\context.xml    中加上一行 <Resources cachingAllowed="true" cacheMaxSize="100000&q…
这是由于要运行这些操作时必须有管理员的权限(比方更新软件),比方更新cocoapods时报错 soindy:SmartThermo soindy$ gem install cocoapods Fetching: cocoapods-core-0.37.2.gem (100%) ERROR:  While executing gem ... (Gem::FilePermissionError) You don't have write permissions for the /Library/Ru…
编译成功,运行时报错: 在使用 pytorch or tensorflow or caffe 时,都可能存在这个问题: *** Error in `xxx': free(): invalid pointer: 0x00000000020663b0 *** 很可能是缺少libtcmalloc库 解决方法1: apt-get安装libtcmallocsudo apt-get install libtcmalloc 然后打开~/.bashrc文件sudo gedit ~/.bashrc在文件末尾添加如…
新服务器上运行scrapy时报错 exceptions.ImportError: No module named _sqlite3 原因 由于新的环境缺少sqlite的依赖,编译python3是虽然不报错.运行scrapy时会出现问题 解决办法 安装依赖 yum install sqlite-devel 或者 yum install sqlite* 进入python的安装位置 cd pythton3.8 重新编译 ./configure make && make install 执行上面依…
python 运行python manege.py runserver时报错:“no module named djangorestframework” 的解决方案 importerror:no module named djangorestframework Django REST framework is a powerful and flexible toolkit that makes it easy to build Web APIs. Some reasons you might w…
报错: [!] /usr/bin/unzip /Users/soindy/Documents/SmartThermo/ios/SmartThermo/Pods/UMengAnalytics/file.zip -d /Users/soindy/Documents/SmartThermo/ios/SmartThermo/Pods/UMengAnalytics Archive:  /Users/soindy/Documents/SmartThermo/ios/SmartThermo/Pods/UMen…
使用使用vue框架运行npm run dev 时报错 如下: 原因: localhost:8080 有可能其他软件占用了,导致其他问题的出现 我们可以动态修改地址 解决: 进入项目文件的config文件夹E:\myapp\myproject\config,找到index.js,修改里面的8080端口,改成8088(确定不被别的程序使用的都可以) 解决: npm run dev 报错 安装完环境后,就要创建项目 使用 vue init webpack my-project 初始化文件 然后使用 c…
运行TensorFlow代码时报错 错误信息ImportError: libcublas.so.10.0: cannot open shared object file 原因:TensorFlow版本与CUDA版本不匹配 可使用pip3 install tensorflow-gpu==[version]将TensorFlow版本切换到制定版本中去,其对应的version可在'>TensorFlow官网查看 另: 1.查看cuda版本(在ubuntu下): cat /usr/local/cuda/…
在执行 yiic webapp ../abc 命令时报错: “php.exe”不是内部或外部命令,也不是可运行的程序 或批处理文件. 这是因为yiic批处理程序找不到php.exe的执行路径引起的. 解决方法: 打开yiic.bat文件, 将php.exe的绝对路径赋值给PHP_COMMAND,将: if “%PHP_COMMAND%” == “” set PHP_COMMAND=php.exe 改为 if "%PHP_COMMAND%" == "" set PHP…
运行报错的原因是sdk没有下载完整 解决办法: 1,打开sdk manage.分别下载android support repository.Google play services.google repository这三个sdk的包,当然最新的包也要下载. 下载Extras中选中的三个即可 2,打开sdk manage,选中所有的sdk包(建议使用第一种,第二种比较消耗时间).然后点击Install packages 下载完成之后,再次运行项目,问题解决…
1.除手动使用开始菜单自启动或者程序启动TOMCAT时TOMCAT一闪而过,这时候是发生了错误,这时候我们打开BIN目录下的“startup.bat”文件,编辑,在结尾添加pause命名,这样在CMD下执行startup.bat时就会出错停止,这时候我们就知道是什么错误了. 2.运行tomcat/bin目录下的startup.bat时报错:the CATALINA_HOME environment variable is not defined correctly 碰到这个问题时的第一反应是添加…
问题描述 在运行shell脚本时报错,命令为: sh test.sh 报错如图: 脚本代码如下: #!/bin/bash # file:test.sh # author:13 # date:2017-07-20 set -e STR1="test string" STR2="ter" echo "STR1:"$STR1 echo "STR2:"$STR2 if [[ "$STR1" =~ "$ST…
运行java web项目时报错:Several ports (8005, 8080, 8009) required 如下图 之所以报上面的错误是因为安装Tomcat的时候,已经把端口8005,8080,8009占用掉了,所以现在要改一下端口号,展开Project Explorer 里的Servers文件夹,找到server.xml打开,根据下图的位置更改为没有用过的端口号…
背景:在使用Samsung S系列手机进行自动化测试时,发现同样脚本的情况下华为荣耀系列可以正常运行,最终发现差异在于Android7.0及以上系统和appium版本不匹配,需要升级appium.但需要升级的文件较多,在win环境下不方便执行,所以需要找到一个能够快速解决的方案. 要解决的问题:appium在androidV7.0系统上运行时报错 Failure [INSTALL_FAILED_ALREADY_EXISTS: Attempt to re-install io.appium.set…
ubuntu apt-get install 时报错:Depends: ***(=某版本)but***(另一版本)is to be installed 这时候就把这个***给purge后再重新装就好了 比如: apt-get purge libcurl4 apt-get install curl 或者: apt-get purge vim-common apt-get install vim…