解决pip install psycopg2出错问题

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

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

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

(0)

相关推荐

  • Django设置Postgresql的操作

    这里假定Postgresql数据库已经装好. 首先安装依赖的包 $ sudo yum install python-devel postgresql-devel 如果使用virtualenv,先source一下virtualenv下的" . bin/activate",然后运行 $ pip install psycopg2 修改settings.py文件 DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresq

  • Python3安装psycopy2以及遇到问题解决方法

    事先在网上搜索了一大圈,头都大了,看到那么多文章写道在python里安装psycopg2的各种坑和各种麻烦,各种不成功.搜索了一下午,索性外出放松.晚饭后,又继续上psycopg2官网(http://initd.org/psycopg/docs/install.html)看了一些有关install的资料,感觉还是麻烦.最后上这个网(https://pypi.python.org/pypi/psycopg2/)上,准备用wheel的方式进行安装. 不过在此网页上突然瞟到一句: 翻译过来就是:"如果

  • Python连接PostgreSQL数据库的方法

    前言 其实在Python中可以用来连接PostgreSQL的模块很多,这里比较推荐psycopg2.psycopg2安装起来非常的简单(pip install psycopg2),这里主要重点介绍下如何使用. 连接数据库: import psycopg2 conn = psycopg2.connect(host="10.100.157.168",user="postgres",password="postgres",database="

  • 解决pip install psycopg2出错问题

    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.g

  • 一劳永逸彻底解决pip install慢的办法

    前言 Python 的一大优点就是丰富的类库,所以我们经常会用 pip 来安装各种库,所以对于Python开发用户来讲,PIP安装软件包是家常便饭.但国外的源下载速度实在太慢,浪费时间.而且经常出现下载后安装出错问题.所以把PIP安装源替换成国内镜像,可以大幅提升下载速度,还可以提高安装成功率. 一.将pip修改为pip国内源即可 pip和很多的包管理工具一样,是从国外源下载的.因此速度会比较慢,甚至会安装不了 清华:https://pypi.tuna.tsinghua.edu.cn/simpl

  • 解决pip install的时候报错timed out的问题

    安装包的时候报错,执行:pip install pyinstaller 问题: File "c:\python\python35\lib\site-packages\pip\_vendor\requests\packages\urllib3\response.py", line 357, in stream data = self.read(amt=amt, decode_content=decode_content) File "c:\python\python35\lib

  • 解决pip install xxx报错SyntaxError: invalid syntax的问题

    python--pip install xxx报错SyntaxError: invalid syntax 在安装好python后,进入python运行环境后,因为我要用pip安装开发Web App需要的第三方库,执行pip install aiohttp,发现会报错SyntaxError: invalid syntax,刚开始以为是拼写或者空格问题或者python版本问题,结果用pip3还是一样的. 然后百度了一下,发现原来用pip安装时都要在cmd命令行里启动的,而在python中无法运行.退

  • 解决pip install dlib报错C++11 is required to use dlib

    目录 1.错误原因 2.原因分析 3.解决办法 1.错误原因 在使用pip install dlib安装dlib的时候报错, 错误的详细信息如下: ERROR: Command errored out with exit status 1:command: /root/miniconda3/envs/cv_1/bin/python -u -c ‘import sys, setuptools, tokenize; sys.argv[0] = ‘"’"’/tmp/pip-install-j

  • Python解决pip install时出现的Could not fetch URL问题

    前言 使用python直接使用pip install xx时,出现 Could not fetch URL https://pypi.python.org/simple/requests/: There was a problem confirming the ssl certificate: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify faile 这种错误,可以用以下方法解决.本人也是拜访无数帖子,尝试了几个小时弄好的,希望可以给大家

  • 解决pip install 卡住不动的问题

    啥也不说了,眼泪哗哗的 –来自怨念深重的不灵狗. [运行环境] 1.在ubuntu下使用pip安装flask-mongoengine; 2.pip已经升到最高版本,你妹,旧版本ctrl + c后还能知道断在哪,新的就直接连个p都没有: 3.使用了豆瓣的源做了加速,安装时还加了能翻墙的代理,然并卵: 4.卡住了,怎么描述错误提示?国内和国外google了下都没有啥相关问题. 5.Extremely slow pypi package retrieval with i.e. pip可以这样描述吗?

  • Python 安装第三方库 pip install 安装慢安装不上的解决办法

    今天来说一下,有些刚刚接触python的朋友,在使用pip install安装python 第三方库的过程中 会出现网速很慢,或者是安装下载到中途,停止,卡主,或者是下载报错等问题.如下图: 还有一些,等等之类的问题,比如我这图中,下载速度只有4.7kb/s 慢的比龟速还慢. 怎么样解决这种问题呢? 就是更换python源 临时的使用方法是,在安装pip install -i + 源地址+ 安装库名,这样可以临时解决安装问题 例如:pip install -ihttps://pypi.tuna.

  • 完美解决Python 2.7不能正常使用pip install的问题

    主要原因是用户目录编码使用了中文,解决方法如下: pip安装python包会加载我的用户目录,我的用户目录恰好是中文的,ascii不能编码. 解决办法是: python目录 Python27\Lib\site-packages 建一个文件sitecustomize.py 内容写: import sys sys.setdefaultencoding('gb2312') python会自动运行这个文件. 以上这篇完美解决Python 2.7不能正常使用pip install的问题就是小编分享给大家的

  • 基于pip install django失败时的解决方法

    使用pip安装Django时报错,先是: C:\Users\admin>pip install django Collecting django Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.python.org', port=443): Read ti

随机推荐