python error: curl: (1) Protocol "'https" not supported or disabled in libcurl

python 调用curl访问一个网页时,出现error: curl: (1) Protocol "‘https" not supported or disabled in libcurl

控制台直接curl xxx是ok的

output = subprocess.check_output(["curl","https://stackoverflow.com/questions/6884669/curl-1-protocol-https-not-supported-or-disabled-in-libcurl"]) # error
print(output)

这边有一个解决方案,但是对此并没有解决问题,原来是双引号的问题,换成但引号就解决问题了,一直以为但引号双引号都能表示字符串,具体为什么还不是很清楚,但是能解决问题了,需要深入再去了解下,如知请告诉我下

output = subprocess.check_output(["curl",‘https://stackoverflow.com/questions/6884669/curl-1-protocol-https-not-supported-or-disabled-in-libcurl’]) # ok
print(output)

看demo也是单引号,curl支持但引号吗? 测试了下 pycurl都支持 但引号双引号一样

import pycurl
c = pycurl.Curl()
c.setopt(c.URL, ‘https://www.taobao.com‘)
c.perform()

另外该error:

可能其他原因:

1、curl 不支持https  可以用curl -V 查看

对应解决方法是重新安装curl  可参考:http://www.codeweblog.com/curl%e4%b8%8d%e6%94%af%e6%8c%81https%e5%8d%8f%e8%ae%ae%e9%97%ae%e9%a2%98%e8%a7%a3%e5%86%b3/

wget http://archive.ubuntu.com/ubuntu/pool/main/c/curl/curl_7.35.0.orig.tar.gz
tar -xzvf curl_7.35.0.orig.tar.gz
cd curl_7.35.0.orig
./configure
make
sudo make install

2、引号内有空格 “ https”

python error: curl: (1) Protocol "'https" not supported or disabled in libcurl

时间: 2024-10-10 04:11:32

python error: curl: (1) Protocol "'https" not supported or disabled in libcurl的相关文章

curl: (1) Protocol "'https" not supported or disabled in libcurl的解决方法

在win10中使用curl 下载地址:https://curl.haxx.se/download.html 1,安装curl[我按照在了D盘] 2,配置环境变量——curl.exe所在的位置 3,配置Path——%CURL_HOME% 4,运行curl——curl --help 5,API调用 6,这里遇见了坑——curl: (1) Protocol "'https" not supported or disabled in libcurl 解决方法:把文档中的 '' 引号,改成 &q

curl 不支持 https(Protocol https not supported or disabled in libcurl)

curl默认安装完后是只支持http协议而不支持https协议的. 可以先用curl -V查看当前curl支持哪些协议: [[email protected] /]# curl -V curl 7.19.4 (x86_64-unknown-linux-gnu) libcurl/7.19.4 OpenSSL/1.0.2k zlib/1.2.11 Protocols: tftp ftp telnet dict http file ftps 可以看到并不支持https协议.若用curl命令访问http

curl: (1) Protocol 'http not supported or disabled in libcurl

在windows中使用curl的时候,命令为 curl 'http://localhost:9200/?pretty' 出现这个报错 curl: (1) Protocol 'http not supported or disabled in libcurl 改为curl "http://localhost:9200/?pretty"即可 在linux中使用curl 'http://localhost:9200/?pretty'是正常的 curl: (1) Protocol 'http

protocol http not supported or disabled in libcurl apt-get

ubuntu 14.04 碰到了这个莫名其妙的问题.谷歌了一把,解决方案如下:http://askubuntu.com/questions/683857/curl-1-protocol-https-not-supported-or-disabled-in-libcurl 即重新编译安装curl包(lib curl). wget https://curl.haxx.se/download/curl-7.51.0.tar.gz tar -xvf curl-7.51.0.tar.gz cd curl-

php中curl不支持https的解决办法

在php程序中使用curl去访问https站点时,报错:Protocol https not supported or disabled in libcurl 该错误信息表示php当时编译时使用的curl库不支持https, 验证方法为你的curl安装目录/bin/curl  -V  显示如下:Protocols: dict file ftp gopher http imap pop3 rtsp smtp telnet tftp这表示curl是不支持 https的 为了支持https,需要下载源

curl不能支持https问题

默认情况下,libcurl不支持https, 如果使用https链接,就会出现" Protocol https not supported or disabled in libcurl" 的错误提示.查看curl是否支持https可以使用命令: curl -V. curl有两种方式使用https : 1. 设定为不验证证书和HOST code = curl_easy_setopt(handle, CURLOPT_SSL_VERIFYPEER, 0L); 2. 设定一个SSL判别证书 h

Python 和curl 调用sendcloud发送邮件

python代码示例: https://github.com/sendcloud2013/sendcloud_docs/blob/master/sources/downloads/code/python.md curl示例: https://github.com/sendcloud2013/sendcloud_docs/blob/master/sources/downloads/code/curl.md

Python 'takes exactly 1 argument (2 given)' Python error

Python,定义urlConfig 接收参数,正常传递参数时,出现,多给了一个参数的错误问题, 定义class的函数之后,在调用的时候出现“'takes exactly 1 argument (2 given)' Python error”. 查询Interesting ‘takes exactly 1 argument (2 given)' Python error 之后,原来在python中,在使用instance调用其class的方法的时候,是相当与在调用中加入本身作为第一个参数的.如下

npm install Error:EPROTO: protocol error, symlink '../mime/cli.js' -> '/vagrant/src/nodejs/node_modules/express/node_modules/send/node_modules/.bin/mime'

我在ubuntu上使用npm安装依赖是出现下面错误: npm ERR! Linux 3.13.0-101-genericnpm ERR! argv "/usr/bin/nodejs" "/usr/bin/npm" "install" "express"npm ERR! node v4.6.2npm ERR! npm v2.15.11npm ERR! path ../mime/cli.jsnpm ERR! code EPROTO