티스토리 뷰
Python/환경구축,설정,에러
[Solved]AttributeError: 'module' object has no attribute 'SSL_ST_INIT'
Hhhh8 2019. 5. 29. 18:01Problem
pip upgrade하던 도중 문제 발생
AttributeError: 'module' object has no attribute 'SSL_ST_INIT'
Solved
python 버전이 2.7과 3.5 두가지였다.
default를 3.5로 변경
1. $ nano ~/.bashrc
2. type
alias python=python3
alias pip=pip3
alias sudo='sudo'
3. source ~/.bashrc
Check
$ python --version
전엔 2.7이 나왔는데 이젠 3.5로 나온다
Result
$ pip install --upgrade pip
Successfully installed pip-19.1.1
'Python > 환경구축,설정,에러' 카테고리의 다른 글
[Solved]FileNotFoundError:[Errno 2] No such file or directory: '/mnt/hgfs/jinie/flask_base/run.py (1) | 2019.05.30 |
---|---|
[Solved]OSError: [Errno 8] Exec format error (0) | 2019.05.29 |
Visual Studio 실행 단축키(Ctrl+Shift+b) 설정하기 (0) | 2019.05.09 |
Error response from daemon: driver failed programming external connectivity on endpoint (0) | 2019.01.23 |
Nginx+Flask 웹서버 구축하기 (0) | 2019.01.17 |