Python安裝pycurl失敗的解決方法
Centos安裝pycurl
centos 安裝pycurl yum install python-devel curl-devel pip3 install pycurl
Mac(老版本)安裝pycurl
解決MacOS升級(jí)后出現(xiàn)xcrun: error: invalid active developer path, missing xcrun的問題 xcode-select --install 然后 dongchang-5:qqmusic baoshan$ pip3 install pycurl Collecting pycurl Using cached pycurl-7.43.0.1.tar.gz Building wheels for collected packages: pycurl Running setup.py bdist_wheel for pycurl ... done Stored in directory: /Users/baoshan/Library/Caches/pip/wheels/a5/5b/c8/f80900b09b49815e1f90dbae2f57e49b3f4c61071db40fb238 Successfully built pycurl Installing collected packages: pycurl Successfully installed pycurl-7.43.0.1 ImportError: pycurl: libcurl link-time ssl backend (openssl) is different from compile-time ssl backend (none/other) 解決辦法 # pip uninstall pycurl # export PYCURL_SSL_LIBRARY=openssl # pip install pycurl dongchang-5:qqmusic baoshan$ pip3 install pycurl Collecting pycurl Installing collected packages: pycurl Successfully installed pycurl-7.43.0.1 上述參考自:http://www.kxtry.com/archives/398 dongchang-5:include baoshan$ python3 Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 26 2016, 10:47:25) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import pycurl Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: pycurl: libcurl link-time ssl backend (openssl) is different from compile-time ssl backend (none/other) 參考解決方案:https://www.jianshu.com/p/50b6771eb853
新版本Mac安裝pycurl
但是這里有一個(gè)坑:在高版本的mac系統(tǒng)環(huán)境變量里是找不到openssl的頭文件的 因?yàn)樾掳姹綧ac的openssl版本 LibreSSL 2.2.7 pip3 uninstall pycurl# 卸載庫 export PYCURL_SSL_LIBRARY=openssl export LDFLAGS=-L/usr/local/opt/openssl/lib export CPPFLAGS=-I/usr/local/opt/openssl/include# openssl相關(guān)頭文件路徑 pip3 install pycurl --compile --no-cache-dir # 重新編譯安裝 至此終于搞定。 dongchang-5:pycurl-7.43.0 baoshan$ python3 Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 26 2016, 10:47:25) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import pycurl >>> 參考:https://segmentfault.com/q/1010000012674778
搞了一個(gè)多下午,終于找到解決方法。。。
以上這篇Python安裝pycurl失敗的解決方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。
- 解決python3 安裝完P(guān)ycurl在import pycurl時(shí)報(bào)錯(cuò)的問題
- Yum中報(bào)錯(cuò):“pycurl.so: undefined symbol: CRYPTO_num_locks”的問題排查
- Linux下遇到PyCurl的錯(cuò)誤解決方法
- Python基于PycURL自動(dòng)處理cookie的方法
- Python基于PycURL實(shí)現(xiàn)POST的方法
- python中pycurl庫的用法實(shí)例
- Python中的CURL PycURL使用例子
- 安裝pycurl報(bào)錯(cuò)Could not run curl-config: 'curl-config'
相關(guān)文章
python實(shí)現(xiàn)登錄與注冊(cè)系統(tǒng)
這篇文章主要為大家詳細(xì)介紹了python實(shí)現(xiàn)登錄與注冊(cè)系統(tǒng),文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2020-11-11python神經(jīng)網(wǎng)絡(luò)使用tensorflow構(gòu)建長(zhǎng)短時(shí)記憶LSTM
這篇文章主要為大家介紹了python機(jī)器學(xué)習(xí)tensorflow構(gòu)建長(zhǎng)短時(shí)記憶網(wǎng)絡(luò)LSTM,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-05-05PyQt4實(shí)現(xiàn)下拉菜單可供選擇并打印出來
這篇文章主要為大家詳細(xì)介紹了PyQt4實(shí)現(xiàn)下拉菜單可供選擇并打印出來,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-04-04python封裝json格式字符串并處理單雙引號(hào)問題
大家好,本篇文章主要講的是python封裝json格式字符串并處理單雙引號(hào)問題,感興趣的同學(xué)趕快來看一看吧,對(duì)你有幫助的話記得收藏一下2022-02-02Python實(shí)現(xiàn)微信好友數(shù)據(jù)爬取及分析
這篇文章會(huì)基于Python對(duì)微信好友進(jìn)行數(shù)據(jù)分析,這里選擇的維度主要有:性別、頭像、簽名、位置,主要采用圖表和詞云兩種形式來呈現(xiàn)結(jié)果,其中,對(duì)文本類信息會(huì)采用詞頻分析和情感分析兩種方法,感興趣的小伙伴可以了解一下2021-12-12Python的Django框架可適配的各種數(shù)據(jù)庫介紹
這篇文章主要介紹了Python的Django框架可適配的各種數(shù)據(jù)庫,簡(jiǎn)單總結(jié)為就是流行的幾種數(shù)據(jù)庫Python基本上全部能用XD 需要的朋友可以參考下2015-07-07