CODEDRAGON ㆍDevelopment/Python
install Seaborn
· pip 위치로 이동
· Seaborn 설치
pip 위치로 이동
파이썬이 설치된 폴더 하위에 Scripts 폴더에 위치해 있습니다.
C:\Python\Python36-32\Scripts
cd C:\Python\Python36-32\Scripts
or
cd %PYTHONHOME%\Scripts
C:\CodeLab>cd C:\Python\Python36-32\Scripts
C:\Python\Python36-32\Scripts> |
Seaborn 설치
Seaborn는 pip을 사용하여 아래와 같이 간단히 설치할 수 있습니다.
pip install Seaborn
C:\Python\Python36-32\Scripts>pip install Seaborn Collecting Seaborn Downloading https://files.pythonhosted.org/packages/10/01/dd1c7838cde3b69b247aaeb61016e238 cafd8188a276e366d36aa6bcdab4/seaborn-0.8.1.tar.gz (178kB) 100% |████████████████████████████████| 184kB 1.4MB/s Collecting numpy (from Seaborn) Downloading https://files.pythonhosted.org/packages/c6/dd/9dce3596b9ed768cc7e3037d8d1729a87fb 963317e2e280d4f95d39f3f81/numpy-1.14.3-cp36-none-win32.whl (9.8MB) 100% |████████████████████████████████| 9.8MB 2.7MB/s Collecting scipy (from Seaborn) Downloading https://files.pythonhosted.org/packages/30/2a/8bd20295c774e3f19b5f8b71d75ef7e80 2673852ca3ae2e1d231d0f1c7a2/scipy-1.1.0-cp36-none-win32.whl (26.3MB) 100% |████████████████████████████████| 26.3MB 583kB/s Collecting matplotlib (from Seaborn) Downloading https://files.pythonhosted.org/packages/c6/e0/1f98872856dcbd042220a142b5a2b4cb 9a8f0efe959ae20f6cb73bd9f3e6/matplotlib-2.2.2-cp36-cp36m-win32.whl (8.5MB) 100% |████████████████████████████████| 8.5MB 1.9MB/s Collecting pandas (from Seaborn) Downloading https://files.pythonhosted.org/packages/a2/f1/9c90efc7a128c3336bca8ceb38374c2ba 97b90d590e3bb9a2cca1c87fda9/pandas-0.23.0-cp36-cp36m-win32.whl (9.2MB) 100% |████████████████████████████████| 9.2MB 1.6MB/s Collecting pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 (from matplotlib->Seaborn) Downloading https://files.pythonhosted.org/packages/6a/8a/718fd7d3458f9fab8e67186b00abdd34 5b639976bc7fb3ae722e1b026a50/pyparsing-2.2.0-py2.py3-none-any.whl (56kB) 100% |████████████████████████████████| 61kB 3.8MB/s Collecting six>=1.10 (from matplotlib->Seaborn) Downloading https://files.pythonhosted.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad 29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl Collecting python-dateutil>=2.1 (from matplotlib->Seaborn) Downloading https://files.pythonhosted.org/packages/cf/f5/af2b09c957ace60dcfac112b669c45c8 c97e32f94aa8b56da4c6d1682825/python_dateutil-2.7.3-py2.py3-none-any.whl (211kB) 100% |████████████████████████████████| 215kB 1.2MB/s Collecting kiwisolver>=1.0.1 (from matplotlib->Seaborn) Downloading https://files.pythonhosted.org/packages/fd/59/8742e2c77c852e09f0d409af42ccc4165120 943ba3b52d57a3ddc56cb0ca/kiwisolver-1.0.1-cp36-none-win32.whl (44kB) 100% |████████████████████████████████| 51kB 4.3MB/s Collecting pytz (from matplotlib->Seaborn) Downloading https://files.pythonhosted.org/packages/dc/83/15f7833b70d3e067ca91467ca245bae0 f6fe56ddc7451aa0dc5606b120f2/pytz-2018.4-py2.py3-none-any.whl (510kB) 100% |████████████████████████████████| 512kB 672kB/s Collecting cycler>=0.10 (from matplotlib->Seaborn) Downloading https://files.pythonhosted.org/packages/f7/d2/e07d3ebb2bd7af696440ce7e754c59dd546f fe1bbe732c8ab68b9c834e61/cycler-0.10.0-py2.py3-none-any.whl Requirement already satisfied: setuptools in c:\python\python36-32\lib\site-packages (from kiwisolver>=1.0.1->matplotlib->Seaborn) (39.0.1) Installing collected packages: numpy, scipy, pyparsing, six, python-dateutil, kiwisolver, pytz, cycler, matplotlib, pandas, Seaborn Running setup.py install for Seaborn ... done Successfully installed Seaborn-0.8.1 cycler-0.10.0 kiwisolver-1.0.1 matplotlib-2.2.2 numpy-1.14.3 pandas-0.23.0 pyparsing-2.2.0 python-dateutil-2.7.3 pytz-2018.4 scipy-1.1.0 six-1.11.0
C:\Python\Python36-32\Scripts> |
'Development > Python' 카테고리의 다른 글
Python 3.7.0 documentation (0) | 2018.07.03 |
---|---|
키워드 인수(Named Parameter) (0) | 2018.07.03 |
NumPy.unique() (0) | 2018.07.02 |
Python - twitter API로 친구목록 가져오기 (0) | 2018.07.01 |
VISUALIZE CODE AND GET LIVE HELP - Python, Java, C, C++, JavaScript, Ruby (0) | 2018.07.01 |