728x90
* 패키지를 설치할 때에는 python, pip의 버전에 항상 유의해주세요.
python3.6 이상의 버전에서 matplotlib를 설치하기 위해서는 다음과 같이 코드를 작성해주면 됩니다.
python3 -m pip install -U pip
python3 -m pip install -U matplotlib
python2.x 버전에서는 다음과 같이 작성하여 matplotlib를 설치합니다.
python -m pip install -U pip
python -m pip install -U matplotlib
[1] https://matplotlib.org/3.2.2/users/installing.html#installing-from-source
반응형
'Useful Information > Linux' 카테고리의 다른 글
Ubuntu(우분투)에서 sublime text 설치하기 (0) | 2021.04.29 |
---|---|
Ubuntu(우분투)에 celluloid 설치하기 (0) | 2020.07.18 |
Ubunbu(우분투)에 opencv 설치하는 방법 (0) | 2020.07.11 |
Ubuntu(우분투)에 pip & pip3 install (설치)하는 방법 (0) | 2020.07.08 |
Ubuntu 16.04 python 3.6 설치 (2) | 2020.07.04 |