728x90
python과 pip가 설치가 되어있을 때 다음 명령으로 matplotlib를 설치할 수 있습니다.
python -m pip install matplotlib
실행결과는 다음과 같습니다.
>python -m pip install matplotlib
Collecting matplotlib
Using cached matplotlib-3.5.2-cp310-cp310-win_amd64.whl (7.2 MB)
Requirement already satisfied: fonttools>=4.22.0 in c:\users\admin\appdata\local\programs\python\python310\lib\site-packages (from matplotlib) (4.33.3)
Requirement already satisfied: cycler>=0.10 in c:\users\admin\appdata\local\programs\python\python310\lib\site-packages (from matplotlib) (0.11.0)
Requirement already satisfied: python-dateutil>=2.7 in c:\users\admin\appdata\local\programs\python\python310\lib\site-packages (from matplotlib) (2.8.2)
Requirement already satisfied: packaging>=20.0 in c:\users\admin\appdata\local\programs\python\python310\lib\site-packages (from matplotlib) (21.2)
Requirement already satisfied: numpy>=1.17 in c:\users\admin\appdata\local\programs\python\python310\lib\site-packages (from matplotlib) (1.22.3)
Requirement already satisfied: kiwisolver>=1.0.1 in c:\users\admin\appdata\local\programs\python\python310\lib\site-packages (from matplotlib) (1.4.2)
Requirement already satisfied: pyparsing>=2.2.1 in c:\users\admin\appdata\local\programs\python\python310\lib\site-packages (from matplotlib) (2.4.7)
Requirement already satisfied: pillow>=6.2.0 in c:\users\admin\appdata\local\programs\python\python310\lib\site-packages (from matplotlib) (9.1.0)
Requirement already satisfied: six>=1.5 in c:\users\admin\appdata\local\programs\python\python310\lib\site-packages (from python-dateutil>=2.7->matplotlib) (1.16.0)
Installing collected packages: matplotlib
Successfully installed matplotlib-3.5.2
WARNING: You are using pip version 21.3.1; however, version 22.0.4 is available.
You should consider upgrading via the 'C:\Users\Admin\AppData\Local\Programs\Python\Python310\python.exe -m pip install --upgrade pip' command.
>
728x90
'Python' 카테고리의 다른 글
[python] 경기도 아파트 매매 실거래 데이터 가져오기 (0) | 2022.05.16 |
---|---|
[python] pyplot을 사용하여 그래프 그리기 (0) | 2022.05.13 |
파이썬 코드로 윈도우 이벤트 읽기 (0) | 2022.05.09 |
파이썬 코드로 윈도우 이벤트 기록하기 (0) | 2022.05.09 |
python datetime 비교 (0) | 2022.04.21 |