Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Linux
- 파이썬
- Audit Log
- 서울시민카드
- docker
- Kubernetes
- log
- Elasticsearch
- Shell
- audit
- 디렉토리
- centos 7.5
- K8S
- 빅데이터
- GPU
- Chrome
- PostgreSQL
- Elk
- CentOS
- 크롬
- rsyslog
- zabbix
- RHEL
- Python
- yum
- GNOME
- bash
- JSON
- syslog
- C
Archives
- Today
- Total
Sysops Notepad
[Linux] Python pycurl 설치간 error 발생시 처리 방법 본문
728x90
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
728x90
'업무 > etc' 카테고리의 다른 글
[Linux] Centos 7 Sonatype Nexus Repository 설치하기(1) (0) | 2020.10.07 |
---|---|
[Linux] 대용량 파일 복사 (0) | 2020.10.05 |
[Linux] JAVA 8 (openjdk 1.8.x ) 설치 (0) | 2020.10.05 |
[Linux] yum 의존성(Dependency ) 확인 (0) | 2020.10.05 |
[Linux] CRLF LF 변환하기 (0) | 2020.10.05 |
Comments