解决:While reading from '/Users/***/.pip/pip.conf' [line 4]: option 'extra-index-url' in section 'global' already exists 最近在Mac上安装python环境,想着多适配几个pip的镜像源,百度搜索的结果真的是一个能用的都没有,重复使用extra-index-url配置多个镜像源时u,pip的命令都会报错,提示已经存在.最终无奈情况下跑到了pip的官网去查看文档,看到find-lin…
产生这个问题的原因呢和github一样,因为他们用的cdn被墙.经小伙伴反馈,解决办法如下. 通过指定国内镜像源来安装: pip --trusted-host 镜像源 install 模块名 -i 镜像源路径 例如:pip --trusted-host pypi.doubanio.com install paramiko -i http://pypi.doubanio.com/simple 注意后面要有/simple目录!!! 命令解释: --trusted-host 指定可信源(忽略https…
由于国外的pip源总是由于各种原因不能被访问或者网速过慢,而造成的timeout错误 解决方法是修改pip的配置文件(如果没有配置文件在相应的地方新建,配置文件的路径和名字参考这里),设置安装包时候访问的镜像,将其改为国内的镜像 然后设置timeout的时间长一些 例如配置文件设置如下: 配置文件地址: C:\ProgramData\pip\pip.ini Windows 7 and later the file is hidden, but writeable at C:\ProgramDat…
pipinstall***安装python包,出现 Cannot fetch index base URL  http://pypi.python.org/simple /错误提示或者直接安装不成功. 解决办法1.windows下创建/%user%/pip/pop.ini,并添加以下内容.        [global]          index-url=http://pypi.douban.com/simple/ 2.linux创建文件~/.pip/pip.conf,并添加一下内容.   …
#centos7 yum -y install epel-release yum -y install python-pip pip install --upgrade pip pip install docker-compose 检验: [root@localhost web]# docker-compose -version docker-compose version 1.23.2, build 1110ad0…
  $ uname -a Linux debian 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt11-1+deb8u6 (2015-11-09) x86_64 GNU/Linux $ python --version Python 2.7.9 $ pip --version pip 8.1.1 from /usr/local/lib/python2.7/dist-packages (python 2.7) $ unset LC_ALL $ pip install…
paip . 解决spring No unique bean of type   [com.mijie.homi.search.service.index.MoodUserIndexService] is defined:  expected single matching bean but found 2: [moodUserIndexService, searchResultProser] 作者Attilax  艾龙,  EMAIL:1466519819@qq.com 来源:attilax的…
解决Android Studio 3.0导入module依赖后unable to merge index 项目需要使用im, 在项目里导入了腾讯im的几个module依赖, 项目无法编译, 报错unable to merge dex 网上搜索一番后发现解决方案大致分以下几种: 先clean再rebuild, 删除.gradle文件夹 clean rebuild.... 降低play-service版本, 腾讯IM demo中用的play-serivce是3.0的, 估计已经够低了 :) 依赖冲突…
Apr 17 17:36:17 localhost snmpd[2810]: /etc/snmp/snmpd.conf: line 311: Error: ERROR: This output format has been deprecated  - Please use the 'extend' directive instead Apr 17 17:36:17 localhost snmpd[2810]: /etc/snmp/snmpd.conf: line 314: Error: ERR…
> 更新pip后,pycharm更新模块报错,经过一番查找,现提供两种解决办法. 报错片段信息如下: AttributeError: module 'pip' has no attribute 'main' 后经查询得知,因为pip的10.0.1版本不支持main方法,所以导致pycharm更新报错. 解决办法: 1,通过降级pip版本来解决(python2.7和python3.x共存的注意修改命令). python -m pip install --upgrade pip==9.0.3 2.修…
cmd中敲命令: python -m ensurepip 更新升级pip命令: python -m pip install --upgrade pip…
今天想要装一下PyYmal第三方库来写一下Python的desired_caps.yaml文件,候发现cmd窗口下无法执行pip命令, 出现了:ModuleNotFoundError: No module named 'pip'这个错误 查询了网上之后发现,这个错误可以通过两行简单的cmd命令行语句进行改正修复. 1.python -m ensurepip 2.python -m pip install --upgrade pip 执行pip.exe install PyYaml 看到可以正常安…
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. Could not fetch URL https://pypi.python.org/simple/pip/: There was a problem confirming the ssl certificate: Can't connect to HTTPS URL because…
比如以selenium的为例 1.打开命令窗口(如果是win10,最好是通过管理员方式打开命令窗口,否则会出现安装时提示访问不拒绝) 2.安装selenium的指定版本,命令:pip install selenium==2.53.6 3.查找版本信息,命令:pip show selenium 3.卸载版本,命令:pip unstall selenium…
设置超时时间: pip --default-timeout=100 install  Pillow…
sudo pip install -i https://pypi.doubanio.com/simple/ YOUR_PACKAGE_NAME --trusted-host pypi.doubanio.com 注意:和网上流传的douban.com不同,现在得用doubanio.com不然就会出错!…
mysql -A不预读数据库信息(use dbname 更快)—Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A mysql> use dbname Reading table information for completion of table and column names You…
python2 -m pip install --upgrade pip --force-reinstall pip uninstall pandas pip install --install-option="--install-lib=$(pwd)" pandas pip uninstall pandas https://pip.pypa.io/en/stable/installing/ curl https://bootstrap.pypa.io/get-pip.py -o ge…
安装vc2005运行库时提示 这是因为它要自解压到用户的临时文件夹下,如果用户名中带中文,就会报错. 简单的解决方法是,手动解压之,再安装 当然,你也可以修改用户名或者再新建个用户.…
hibernate4.3版本 报错: 把实体注解的声明方式修改一下解决,如: 将 @Entity@Table(name=”table_name”)改为@Entity(name=”table_name”)…
在用NIOS的flashprogram对EPCSx进行烧录程序时,出现了No EPCS layout data --- looking for section [EPCS-XXXXXX]的错误,在网上查找了一下,解决办法如下. 1.首先在<nios2_install>/bin文件夹下面新建nios2-flash-override.txt文件: 2.输入下述代码,下面描述的器件都是Altera的EPCS器件,sector_size表示sector大小,sector_count表示sector个数…
http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/001375840038939c291467cc7c747b1810aab2fb8863508000 https://www.zhihu.com/question/20431718 仓库初始化 git init echo "# xx项目--" >> README.md git add README.md git…
今天在做项目开发时遇到这么一个错误,完整的错误提示信息如下: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.tony.timepicker/com.tony.timepicker.MainActivity}: android.view.InflateException: Binary XML file line #11: Error inflating class com.tony.timepicke…
当在终端执行sudo命令时,系统提示“hadoop is not in the sudoers file”: 其实就是没有权限进行sudo,解决方法如下(这里假设用户名是cuser): 1.切换到超级用户:$ su 2.打开/etc/sudoers文件:$vim /etc/sudoers 3.修改文件内容: 找到“root    ALL=(ALL)       ALL”一行,在下面插入新的一行,内容是“hadoop   ALL=(ALL)       ALL”,然后在vim键入命令“:wq!”保…
今天写程序发现一个问题,就是XML中报出android.view.InflateException异常,可能的原因有: 1.XML中使用到得组件名称是否书写正确(包名+类名),可以使用crtl+鼠标点击看能不能跳转到该组件的定义的地方,可以的话就不是这个问题,如果不可以的话,就是这个问题 2.抛出异常时的main.xml与自定义View类相关代码如下:就是自定义的组件中的构造方法有没有书写正确 main.xml 继承View的类Chessboard.java: 对于此异常,如下进行修改:添加Vi…
在初次学习使用shiro框架的时候碰到了这个问题,具体报错情况如下: [org.apache.shiro.authc.AbstractAuthenticator] - Authentication failed for token submission [org.apache.shiro.authc.UsernamePasswordToken - asdf, rememberMe=false]. Possible unexpected error? (Typical or expected lo…
相信用过IIS7的朋友在调试程序的时候都遇到过下面这样的错误提示:    An error occurred on the server when processing the URL. Please contact the system administrator.If you are the system administrator please click here to find out more about this error.    其实这是IIS7对ASP程序发送的一个脚本错误消…
在IIS7上配置一个asp程序,出现了一个错如提示: An error occurred on the server when processing the URL. Please contact the system administrator.If you are the system administrator please click here to find out more about this error. 这个问题一般是由于关闭错误调试信息的问题, 父路径没有开启的原因: 1.点…
在远程机打开sharpsvn客户端测试,结果报错 Svn启动窗口报错 Unable to connect to a repository at URL 'svn://...' 咋整,我在win10我的开发环境上没报错啊, 一时间各种的想象, 昨天先是svn客户端不能再win7上运行,后来编译平台换成X86模式,sharpsvn.dll 换成x86,问题解决 .注意:必须删除原先生成的bin文件,当时我只删除了exe文件,结果还是报错,debug 模式和 Release 都要换到x86 . 接着点…
用了下DEDECMS v5.7 SP1版本,发现很多问题,其中一个比较严重的是,架到服务器上的dede网站后台打开菜单选项卡得不能动,等半天显示505服务器错误,这个真让人纠结,在本地调试明明好好的,放在服务器为什么不行了呢?检查了下源文件,发现是DedeCMS安全提示执行缓慢造成的,下面是解决方案: dede\templets下找到 index_body.htm 文件 把这些注释掉. $(function() { $.get("index_testenv.php",function(…