解决pip install psycopg2出错问题


Posted in Python onJuly 09, 2020

pip install psycopg2出现错误:

Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
Collecting psycopg2
 Using cached https://pypi.tuna.tsinghua.edu.cn/packages/84/d7/6a93c99b5ba4d4d22daa3928b983cec66df4536ca50b22ce5dcac65e4e71/psycopg2-2.8.4.tar.gz (377 kB)
 ERROR: Command errored out with exit status 1:
  command: /opt/AN/bin/python -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-lkf6b0y5/psycopg2/setup.py'"'"'; __file__='"'"'/tmp/pip-install-lkf6b0y5/psycopg2/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base /tmp/pip-install-lkf6b0y5/psycopg2/pip-egg-info
   cwd: /tmp/pip-install-lkf6b0y5/psycopg2/
 Complete output (23 lines):
 running egg_info
 creating /tmp/pip-install-lkf6b0y5/psycopg2/pip-egg-info/psycopg2.egg-info
 writing /tmp/pip-install-lkf6b0y5/psycopg2/pip-egg-info/psycopg2.egg-info/PKG-INFO
 writing dependency_links to /tmp/pip-install-lkf6b0y5/psycopg2/pip-egg-info/psycopg2.egg-info/dependency_links.txt
 writing top-level names to /tmp/pip-install-lkf6b0y5/psycopg2/pip-egg-info/psycopg2.egg-info/top_level.txt
 writing manifest file '/tmp/pip-install-lkf6b0y5/psycopg2/pip-egg-info/psycopg2.egg-info/SOURCES.txt'
 
 Error: pg_config executable not found.
 
 pg_config is required to build psycopg2 from source. Please add the directory
 containing pg_config to the $PATH or specify the full executable path with the
 option:
 
  python setup.py build_ext --pg-config /path/to/pg_config build ...
 
 or with the pg_config option in 'setup.cfg'.
 
 If you prefer to avoid building psycopg2 from source, please install the PyPI
 'psycopg2-binary' package instead.
 
 For further information please check the 'doc/src/install.rst' file (also at
 <http://initd.org/psycopg/docs/install.html>).
 
 ----------------------------------------
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.

解决方法:

yum install postgresql postgresql-devel python-devel python3-devel

补充知识:anaconda 通过pip 安装python psycopg2

1. 【不能在cmd里install】之前一直在 cmd 里conda install psycopg2 ,pip install psycopg2,虽然提示安装成功,但是import时还是会报错提示包不存在。

2. 【在prompt里pip】正确的安装方法是,安装完成 anaconda,进入anaconda prompt,输入命令即可

pip install psycopg2

解决pip install psycopg2出错问题

3. import psycopg2 未报错,安装成功。

以上这篇解决pip install psycopg2出错问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
分享一个常用的Python模拟登陆类
Mar 29 Python
Python中每次处理一个字符的5种方法
May 21 Python
Python简单格式化时间的方法【strftime函数】
Sep 18 Python
Python基于sftp及rsa密匙实现远程拷贝文件的方法
Sep 21 Python
教你用Python创建微信聊天机器人
Mar 31 Python
基于Django URL传参 FORM表单传数据 get post的用法实例
May 28 Python
python中dir()与__dict__属性的区别浅析
Dec 10 Python
详解python tkinter教程-事件绑定
Mar 28 Python
Python 串口读写的实现方法
Jun 12 Python
python子线程退出及线程退出控制的代码
Oct 16 Python
python实现最速下降法
Mar 24 Python
python多线程semaphore实现线程数控制的示例
Aug 10 Python
利用python下载scihub成文献为PDF操作
Jul 09 #Python
Python scrapy爬取小说代码案例详解
Jul 09 #Python
使用Python实现微信拍一拍功能的思路代码
Jul 09 #Python
pytorch 多分类问题,计算百分比操作
Jul 09 #Python
详解Python 循环嵌套
Jul 09 #Python
keras分类之二分类实例(Cat and dog)
Jul 09 #Python
python中tkinter窗口位置\坐标\大小等实现示例
Jul 09 #Python
You might like
【动漫杂谈】关于《请在T台上微笑》
2020/03/03 日漫
PHP数据库调用类调用实例(详细注释)
2012/07/12 PHP
php的array数组和使用实例简明教程(容易理解)
2014/03/20 PHP
Windows下编译PHP5.4和xdebug全记录
2015/04/03 PHP
详解phpstorm2020最新破解方法
2020/09/17 PHP
10款新鲜出炉的 jQuery 插件(Ajax 插件,有幻灯片、图片画廊、菜单等)
2011/06/08 Javascript
javascript学习笔记(二) js一些基本概念
2012/06/18 Javascript
JS中setTimeout()的用法详解
2013/04/14 Javascript
js函数模拟显示桌面.scf程序示例
2014/04/20 Javascript
jQuery+AJAX实现网页无刷新上传
2015/02/22 Javascript
JavaScript实现强制重定向至HTTPS页面
2015/06/10 Javascript
JavaScript对象数组如何按指定属性和排序方向进行排序
2016/06/15 Javascript
原生js实现手风琴功能(支持横纵向调用)
2017/01/13 Javascript
SVG描边动画
2017/02/23 Javascript
深入理解React中何时使用箭头函数
2017/08/23 Javascript
微信小程序scroll-view实现滚动穿透和阻止滚动的方法
2018/08/20 Javascript
给localStorage设置一个过期时间的方法分享
2018/11/06 Javascript
jQuery实现视频展示效果
2020/05/30 jQuery
解决vue中el-tab-pane切换的问题
2020/07/19 Javascript
[06:25]DOTA2英雄梦之声_第17期_大地之灵
2014/06/20 DOTA
Python与人工神经网络:使用神经网络识别手写图像介绍
2017/12/19 Python
Python3基于sax解析xml操作示例
2018/05/22 Python
Python下应用opencv 实现人脸检测功能
2019/10/24 Python
Python列表倒序输出及其效率详解
2020/03/04 Python
python批量检查两个对应的txt文件的行数是否一致的实例代码
2020/10/31 Python
详解vscode实现远程linux服务器上Python开发
2020/11/10 Python
struct与class的区别
2014/02/03 面试题
业务主管岗位职责
2013/11/20 职场文书
小学教师办公室制度
2014/02/03 职场文书
省级青年文明号申报材料
2014/05/23 职场文书
2015年政务公开工作总结
2015/05/19 职场文书
公司借条范本
2015/05/25 职场文书
名人传读书笔记
2015/06/26 职场文书
团拜会主持词
2015/07/04 职场文书
周一问候语大全
2015/11/10 职场文书
导游词之山东孔庙
2019/11/04 职场文书