반응형
pycurl 에러와 설치 방법
1. python에 접속하여 pycurl 을 import 하여 에러메시지 확인
# python3
>>> import pycurl
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: pycurl: libcurl link-time ssl backend (nss) is different from compile-time ssl backend (none/other)
2. 위 에러 발생시 제거 후 재설치 해준다.
# pip3 uninstall pycurl
# export PYCURL_SSL_LIBRARY=nss
# pip3 install --compile --install-option="--with-nss" --no-cache-dir pycurl
# python3
>>> import pycurl
=======================
pycurl 7.45.2 설치 방법
https://pypi.org/project/pycurl/#files
pycurl
PycURL -- A Python Interface To The cURL library
pypi.org
위에서 다운 받아서 설치를 진행해보는데.. 정확히 설치가 되지 않고 있다.
해결 방법을 알아 보고 있는데 아직은 찾아ㅣ 지지가 않네..
반응형
'IT News' 카테고리의 다른 글
사용하기 좋은 확장 프로그램들, stable diffusion 활용 프로그램모음 (0) | 2024.02.06 |
---|---|
ddetailer로 스테이블 디퓨전 얼굴 수정하기 위한 방법, stable diffusion (0) | 2024.02.06 |
stablediffusion sd. 스테이블 디퓨전 다른 설치 (0) | 2024.01.30 |
파이썬 telegram filters 에러 해결 방 (0) | 2024.01.30 |
edge 의 ie모드에서 디버깅 모드 사용방법 (0) | 2023.12.14 |
댓글