[macOS High Sierra] jupyter python2 pip 설치 실패기
Python을 사용해보려는데 jupyter를 추천받아서 설치해봤습니다
설치 실패기이니 진짜로 설치에 실패한거니 따라하지 마시고
Anaconda 쓰면 잘되니 Anaconda쓰시길...
그리고 무슨문제인가... 테이블 넓이가 계속 늘어나서 포기함
공식 홈페이지 가면 pip로 설치가능하다고 다운로드 파일도 배포를 안하는듯...
그러니 pip로 진행하기로... 맥에 설치된 파이썬이 2이니 홈페이지에 나온데로 진행해봄
python -m pip install --upgrade pip
python -m pip install jupyter
admin:~ admin$ python -m pip install --upgrade pip Requirement already up-to-date: pip in /Library/Python/2.7/site-packages/pip-10.0.1-py2.7.egg (10.0.1) matplotlib 1.3.1 requires nose, which is not installed. matplotlib 1.3.1 requires tornado, which is not installed. admin:~ admin$ python -m pip install jupyter Collecting jupyter Collecting jupyter-console (from jupyter) Collecting ipykernel (from jupyter) Collecting notebook (from jupyter) Collecting nbconvert (from jupyter) Collecting qtconsole (from jupyter) Collecting ipywidgets (from jupyter) Collecting jupyter-client (from jupyter-console->jupyter) Collecting ipython (from jupyter-console->jupyter) Collecting pygments (from jupyter-console->jupyter) Collecting prompt-toolkit<2.0.0,>=1.0.0 (from jupyter-console->jupyter) Collecting tornado>=4.0 (from ipykernel->jupyter) Collecting traitlets>=4.1.0 (from ipykernel->jupyter) Collecting jupyter-core>=4.4.0 (from notebook->jupyter) Collecting ipython-genutils (from notebook->jupyter) Collecting terminado>=0.8.1 (from notebook->jupyter) Collecting jinja2 (from notebook->jupyter) Collecting pyzmq>=17 (from notebook->jupyter) Collecting nbformat (from notebook->jupyter) Collecting Send2Trash (from notebook->jupyter) Collecting mistune>=0.7.4 (from nbconvert->jupyter) Collecting bleach (from nbconvert->jupyter) Collecting testpath (from nbconvert->jupyter) Collecting pandocfilters>=1.4.1 (from nbconvert->jupyter) Collecting entrypoints>=0.2.2 (from nbconvert->jupyter) Collecting widgetsnbextension~=3.2.0 (from ipywidgets->jupyter) Collecting python-dateutil>=2.1 (from jupyter-client->jupyter-console->jupyter) Collecting decorator (from ipython->jupyter-console->jupyter) Collecting simplegeneric>0.8 (from ipython->jupyter-console->jupyter) Collecting backports.shutil-get-terminal-size; python_version == "2.7" (from ipython->jupyter-console->jupyter) Collecting appnope; sys_platform == "darwin" (from ipython->jupyter-console->jupyter) Collecting pexpect; sys_platform != "win32" (from ipython->jupyter-console->jupyter) Collecting pickleshare (from ipython->jupyter-console->jupyter) Requirement already satisfied: setuptools>=18.5 in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from ipython->jupyter-console->jupyter) (18.5) Collecting pathlib2; python_version == "2.7" or python_version == "3.3" (from ipython->jupyter-console->jupyter) Collecting wcwidth (from prompt-toolkit<2.0.0,>=1.0.0->jupyter-console->jupyter) Collecting six>=1.9.0 (from prompt-toolkit<2.0.0,>=1.0.0->jupyter-console->jupyter) Collecting futures (from tornado>=4.0->ipykernel->jupyter) Collecting singledispatch (from tornado>=4.0->ipykernel->jupyter) Collecting backports_abc>=0.4 (from tornado>=4.0->ipykernel->jupyter) Collecting enum34; python_version == "2.7" (from traitlets>=4.1.0->ipykernel->jupyter) Collecting ptyprocess; os_name != "nt" (from terminado>=0.8.1->notebook->jupyter) Collecting MarkupSafe>=0.23 (from jinja2->notebook->jupyter) Collecting jsonschema!=2.5.0,>=2.4 (from nbformat->notebook->jupyter) Collecting html5lib!=1.0b1,!=1.0b2,!=1.0b3,!=1.0b4,!=1.0b5,!=1.0b6,!=1.0b7,!=1.0b8,>=0.99999999pre (from bleach->nbconvert->jupyter) Collecting configparser>=3.5; python_version == "2.7" (from entrypoints>=0.2.2->nbconvert->jupyter) Collecting scandir; python_version < "3.5" (from pathlib2; python_version == "2.7" or python_version == "3.3"->ipython->jupyter-console->jupyter) Collecting functools32; python_version == "2.7" (from jsonschema!=2.5.0,>=2.4->nbformat->notebook->jupyter) Collecting webencodings (from html5lib!=1.0b1,!=1.0b2,!=1.0b3,!=1.0b4,!=1.0b5,!=1.0b6,!=1.0b7,!=1.0b8,>=0.99999999pre->bleach->nbconvert->jupyter) matplotlib 1.3.1 requires nose, which is not installed. Installing collected packages: futures, six, singledispatch, backports-abc, tornado, ipython-genutils, decorator, enum34, traitlets, jupyter-core, pyzmq, python-dateutil, jupyter-client, simplegeneric, backports.shutil-get-terminal-size, pygments, appnope, ptyprocess, pexpect, scandir, pathlib2, pickleshare, wcwidth, prompt-toolkit, ipython, ipykernel, jupyter-console, terminado, MarkupSafe, jinja2, mistune, functools32, jsonschema, nbformat, webencodings, html5lib, bleach, testpath, pandocfilters, configparser, entrypoints, nbconvert, Send2Trash, notebook, qtconsole, widgetsnbextension, ipywidgets, jupyter Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/concurrent' Consider using the `--user` option or check the permissions.
admin:~ admin$ |
권한이 없다고 에러를 뿜어줌
그래서 sudo 로 다시 진행
admin:~ admin$ sudo python -m pip install jupyter Password: The directory '/Users/admin/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. The directory '/Users/admin/Library/Caches/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. Collecting jupyter Collecting jupyter-console (from jupyter) Collecting ipykernel (from jupyter) Downloading https://files.pythonhosted.org/packages/8e/65/c7ca3e3d05f9bd51b3010076b84f4e7304b12d0abf62a48f6cec2c90c019/ipykernel-4.8.2-py2-none-any.whl (108kB) 100% |████████████████████████████████| 112kB 536kB/s Collecting notebook (from jupyter) Downloading https://files.pythonhosted.org/packages/c0/66/cfed59f574d03ca5f1b7c5281485a9cc9a0f21342d24e0f057572316dae5/notebook-5.5.0-py2.py3-none-any.whl (8.4MB) 100% |████████████████████████████████| 8.4MB 75kB/s Collecting nbconvert (from jupyter) Downloading https://files.pythonhosted.org/packages/39/ea/280d6c0d92f8e3ca15fd798bbcc2ea141489f9539de7133d8fe10ea4b049/nbconvert-5.3.1-py2.py3-none-any.whl (387kB) 100% |████████████████████████████████| 389kB 132kB/s Collecting qtconsole (from jupyter) Downloading https://files.pythonhosted.org/packages/90/ff/047e0dca2627b162866920e7aa93f04523c0ae81e5c67060eec85701992d/qtconsole-4.3.1-py2.py3-none-any.whl (108kB) 100% |████████████████████████████████| 112kB 170kB/s Collecting ipywidgets (from jupyter) Downloading https://files.pythonhosted.org/packages/7d/24/fabc09ad81c6071159a4d12d5bfbddcbea69bd9e3b16c3250ef300c0285f/ipywidgets-7.2.1-py2.py3-none-any.whl (106kB) 100% |████████████████████████████████| 112kB 110kB/s Collecting jupyter-client (from jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/94/dd/fe6c4d683b09eb05342bd2816b7779663f71762b4fa9c2d5203d35d17354/jupyter_client-5.2.3-py2.py3-none-any.whl (89kB) 100% |████████████████████████████████| 92kB 141kB/s Collecting ipython (from jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/52/19/aadde98d6bde1667d0bf431fb2d22451f880aaa373e0a241c7e7cb5815a0/ipython-5.7.0-py2-none-any.whl (760kB) 100% |████████████████████████████████| 768kB 89kB/s Collecting pygments (from jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/02/ee/b6e02dc6529e82b75bb06823ff7d005b141037cb1416b10c6f00fc419dca/Pygments-2.2.0-py2.py3-none-any.whl (841kB) 100% |████████████████████████████████| 849kB 119kB/s Collecting prompt-toolkit<2.0.0,>=1.0.0 (from jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/d1/b0/1a6c262da35c779dd79550137aa7c298a424987240a28792ec5ccf48f848/prompt_toolkit-1.0.15-py2-none-any.whl (247kB) 100% |████████████████████████████████| 256kB 29kB/s Collecting tornado>=4.0 (from ipykernel->jupyter) Downloading https://files.pythonhosted.org/packages/cf/d1/3be271ae5eba9fb59df63c9891fdc7d8044b999e8ac145994cdbfd2ae66a/tornado-5.0.2.tar.gz (506kB) 100% |████████████████████████████████| 512kB 130kB/s Collecting traitlets>=4.1.0 (from ipykernel->jupyter) Downloading https://files.pythonhosted.org/packages/93/d6/abcb22de61d78e2fc3959c964628a5771e47e7cc60d53e9342e21ed6cc9a/traitlets-4.3.2-py2.py3-none-any.whl (74kB) 100% |████████████████████████████████| 81kB 79kB/s Collecting jupyter-core>=4.4.0 (from notebook->jupyter) Downloading https://files.pythonhosted.org/packages/1d/44/065d2d7bae7bebc06f1dd70d23c36da8c50c0f08b4236716743d706762a8/jupyter_core-4.4.0-py2.py3-none-any.whl (126kB) 100% |████████████████████████████████| 133kB 104kB/s Collecting ipython-genutils (from notebook->jupyter) Collecting terminado>=0.8.1 (from notebook->jupyter) Collecting jinja2 (from notebook->jupyter) Downloading https://files.pythonhosted.org/packages/7f/ff/ae64bacdfc95f27a016a7bed8e8686763ba4d277a78ca76f32659220a731/Jinja2-2.10-py2.py3-none-any.whl (126kB) 100% |████████████████████████████████| 133kB 117kB/s Collecting pyzmq>=17 (from notebook->jupyter) Downloading https://files.pythonhosted.org/packages/de/3d/9cf4b0f42741aca91464d12d08636a404026ee0831b4758b10b0b77e4c24/pyzmq-17.0.0-cp27-cp27m-macosx_10_6_intel.whl (1.1MB) 100% |████████████████████████████████| 1.1MB 171kB/s Collecting nbformat (from notebook->jupyter) Downloading https://files.pythonhosted.org/packages/da/27/9a654d2b6cc1eaa517d1c5a4405166c7f6d72f04f6e7eea41855fe808a46/nbformat-4.4.0-py2.py3-none-any.whl (155kB) 100% |████████████████████████████████| 163kB 79kB/s Collecting Send2Trash (from notebook->jupyter) Collecting mistune>=0.7.4 (from nbconvert->jupyter) Collecting bleach (from nbconvert->jupyter) Collecting testpath (from nbconvert->jupyter) Downloading https://files.pythonhosted.org/packages/15/19/d7bc380c479a184e4a5a9ce516e4e2a773165f89b445f7cdced83d94de25/testpath-0.3.1-py2.py3-none-any.whl (161kB) 100% |████████████████████████████████| 163kB 55kB/s Collecting pandocfilters>=1.4.1 (from nbconvert->jupyter) Collecting entrypoints>=0.2.2 (from nbconvert->jupyter) Collecting widgetsnbextension~=3.2.0 (from ipywidgets->jupyter) Downloading https://files.pythonhosted.org/packages/ff/fa/64acc09fc845a6b2dc0724d6f3f81e829b778ed5e9a7559567b4f19a3f4b/widgetsnbextension-3.2.1-py2.py3-none-any.whl (2.2MB) 100% |████████████████████████████████| 2.2MB 66kB/s Collecting python-dateutil>=2.1 (from jupyter-client->jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/cf/f5/af2b09c957ace60dcfac112b669c45c8c97e32f94aa8b56da4c6d1682825/python_dateutil-2.7.3-py2.py3-none-any.whl (211kB) 100% |████████████████████████████████| 215kB 110kB/s Collecting decorator (from ipython->jupyter-console->jupyter) Collecting simplegeneric>0.8 (from ipython->jupyter-console->jupyter) Collecting backports.shutil-get-terminal-size; python_version == "2.7" (from ipython->jupyter-console->jupyter) Collecting appnope; sys_platform == "darwin" (from ipython->jupyter-console->jupyter) Collecting pexpect; sys_platform != "win32" (from ipython->jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/b9/3c/e51a76fe78a877afd9acd95a51e3b7610c0983b19ef5a5dfa11735a619b8/pexpect-4.5.0-py2.py3-none-any.whl (57kB) 100% |████████████████████████████████| 61kB 144kB/s Collecting pickleshare (from ipython->jupyter-console->jupyter) Requirement already satisfied: setuptools>=18.5 in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from ipython->jupyter-console->jupyter) (18.5) Collecting pathlib2; python_version == "2.7" or python_version == "3.3" (from ipython->jupyter-console->jupyter) Collecting wcwidth (from prompt-toolkit<2.0.0,>=1.0.0->jupyter-console->jupyter) Collecting six>=1.9.0 (from prompt-toolkit<2.0.0,>=1.0.0->jupyter-console->jupyter) Collecting futures (from tornado>=4.0->ipykernel->jupyter) Collecting singledispatch (from tornado>=4.0->ipykernel->jupyter) Collecting backports_abc>=0.4 (from tornado>=4.0->ipykernel->jupyter) Collecting enum34; python_version == "2.7" (from traitlets>=4.1.0->ipykernel->jupyter) Collecting ptyprocess; os_name != "nt" (from terminado>=0.8.1->notebook->jupyter) Collecting MarkupSafe>=0.23 (from jinja2->notebook->jupyter) Collecting jsonschema!=2.5.0,>=2.4 (from nbformat->notebook->jupyter) Collecting html5lib!=1.0b1,!=1.0b2,!=1.0b3,!=1.0b4,!=1.0b5,!=1.0b6,!=1.0b7,!=1.0b8,>=0.99999999pre (from bleach->nbconvert->jupyter) Downloading https://files.pythonhosted.org/packages/a5/62/bbd2be0e7943ec8504b517e62bab011b4946e1258842bc159e5dfde15b96/html5lib-1.0.1-py2.py3-none-any.whl (117kB) 100% |████████████████████████████████| 122kB 44kB/s Collecting configparser>=3.5; python_version == "2.7" (from entrypoints>=0.2.2->nbconvert->jupyter) Collecting scandir; python_version < "3.5" (from pathlib2; python_version == "2.7" or python_version == "3.3"->ipython->jupyter-console->jupyter) Collecting functools32; python_version == "2.7" (from jsonschema!=2.5.0,>=2.4->nbformat->notebook->jupyter) Collecting webencodings (from html5lib!=1.0b1,!=1.0b2,!=1.0b3,!=1.0b4,!=1.0b5,!=1.0b6,!=1.0b7,!=1.0b8,>=0.99999999pre->bleach->nbconvert->jupyter) matplotlib 1.3.1 requires nose, which is not installed. Installing collected packages: futures, six, singledispatch, backports-abc, tornado, ipython-genutils, decorator, enum34, traitlets, jupyter-core, pyzmq, python-dateutil, jupyter-client, simplegeneric, backports.shutil-get-terminal-size, pygments, appnope, ptyprocess, pexpect, scandir, pathlib2, pickleshare, wcwidth, prompt-toolkit, ipython, ipykernel, jupyter-console, terminado, MarkupSafe, jinja2, mistune, functools32, jsonschema, nbformat, webencodings, html5lib, bleach, testpath, pandocfilters, configparser, entrypoints, nbconvert, Send2Trash, notebook, qtconsole, widgetsnbextension, ipywidgets, jupyter Found existing installation: six 1.4.1 Cannot uninstall 'six'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall. admin:~ admin$ |
되는듯 하다 뭔가 또 없다고 에러를 뿜어줌
일단 matplotlib is not installed 라니 설치를 진행해봄
이제부턴 전부 sudo로 진행
admin:~ admin$ sudo pip install matplotlib Password: The directory '/Users/admin/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. The directory '/Users/admin/Library/Caches/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. Requirement already satisfied: matplotlib in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (1.3.1) Requirement already satisfied: numpy>=1.5 in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from matplotlib) (1.8.0rc1) Requirement already satisfied: python-dateutil in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from matplotlib) (1.5) Collecting tornado (from matplotlib) Downloading https://files.pythonhosted.org/packages/cf/d1/3be271ae5eba9fb59df63c9891fdc7d8044b999e8ac145994cdbfd2ae66a/tornado-5.0.2.tar.gz (506kB) 100% |████████████████████████████████| 512kB 119kB/s Requirement already satisfied: pyparsing>=1.5.6 in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from matplotlib) (2.0.1) Collecting nose (from matplotlib) Downloading https://files.pythonhosted.org/packages/99/4f/13fb671119e65c4dce97c60e67d3fd9e6f7f809f2b307e2611f4701205cb/nose-1.3.7-py2-none-any.whl (154kB) 100% |████████████████████████████████| 163kB 142kB/s Requirement already satisfied: futures in /Library/Python/2.7/site-packages (from tornado->matplotlib) (3.2.0) Collecting singledispatch (from tornado->matplotlib) Collecting backports_abc>=0.4 (from tornado->matplotlib) Requirement already satisfied: six in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from singledispatch->tornado->matplotlib) (1.4.1) Installing collected packages: singledispatch, backports-abc, tornado, nose Running setup.py install for tornado ... done Could not install packages due to an EnvironmentError: [Errno 1] Operation not permitted: '/System/Library/Frameworks/Python.framework/Versions/2.7/man'
admin:~ admin$ |
뭐지...
admin:~ admin$ sudo pip install six The directory '/Users/admin/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. The directory '/Users/admin/Library/Caches/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. Requirement already satisfied: six in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (1.4.1) admin:~ admin$ |
six 도 뭐라고 뜨길래 설치를 해봄 근데 이미 존재한다고...
그래서 다시 jupyter 설치를 진행
admin:~ admin$ sudo python -m pip install jupyter The directory '/Users/admin/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. The directory '/Users/admin/Library/Caches/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. Collecting jupyter Collecting jupyter-console (from jupyter) Collecting ipykernel (from jupyter) Downloading https://files.pythonhosted.org/packages/8e/65/c7ca3e3d05f9bd51b3010076b84f4e7304b12d0abf62a48f6cec2c90c019/ipykernel-4.8.2-py2-none-any.whl (108kB) 100% |████████████████████████████████| 112kB 132kB/s Collecting notebook (from jupyter) Downloading https://files.pythonhosted.org/packages/c0/66/cfed59f574d03ca5f1b7c5281485a9cc9a0f21342d24e0f057572316dae5/notebook-5.5.0-py2.py3-none-any.whl (8.4MB) 100% |████████████████████████████████| 8.4MB 62kB/s Collecting nbconvert (from jupyter) Downloading https://files.pythonhosted.org/packages/39/ea/280d6c0d92f8e3ca15fd798bbcc2ea141489f9539de7133d8fe10ea4b049/nbconvert-5.3.1-py2.py3-none-any.whl (387kB) 100% |████████████████████████████████| 389kB 39kB/s Collecting qtconsole (from jupyter) Downloading https://files.pythonhosted.org/packages/90/ff/047e0dca2627b162866920e7aa93f04523c0ae81e5c67060eec85701992d/qtconsole-4.3.1-py2.py3-none-any.whl (108kB) 100% |████████████████████████████████| 112kB 98kB/s Collecting ipywidgets (from jupyter) Downloading https://files.pythonhosted.org/packages/7d/24/fabc09ad81c6071159a4d12d5bfbddcbea69bd9e3b16c3250ef300c0285f/ipywidgets-7.2.1-py2.py3-none-any.whl (106kB) 100% |████████████████████████████████| 112kB 26kB/s Collecting jupyter-client (from jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/94/dd/fe6c4d683b09eb05342bd2816b7779663f71762b4fa9c2d5203d35d17354/jupyter_client-5.2.3-py2.py3-none-any.whl (89kB) 100% |████████████████████████████████| 92kB 32kB/s Collecting ipython (from jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/52/19/aadde98d6bde1667d0bf431fb2d22451f880aaa373e0a241c7e7cb5815a0/ipython-5.7.0-py2-none-any.whl (760kB) 100% |████████████████████████████████| 768kB 49kB/s Collecting pygments (from jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/02/ee/b6e02dc6529e82b75bb06823ff7d005b141037cb1416b10c6f00fc419dca/Pygments-2.2.0-py2.py3-none-any.whl (841kB) 100% |████████████████████████████████| 849kB 54kB/s Collecting prompt-toolkit<2.0.0,>=1.0.0 (from jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/d1/b0/1a6c262da35c779dd79550137aa7c298a424987240a28792ec5ccf48f848/prompt_toolkit-1.0.15-py2-none-any.whl (247kB) 100% |████████████████████████████████| 256kB 26kB/s Requirement already satisfied: tornado>=4.0 in /Library/Python/2.7/site-packages (from ipykernel->jupyter) (5.0.2) Collecting traitlets>=4.1.0 (from ipykernel->jupyter) Downloading https://files.pythonhosted.org/packages/93/d6/abcb22de61d78e2fc3959c964628a5771e47e7cc60d53e9342e21ed6cc9a/traitlets-4.3.2-py2.py3-none-any.whl (74kB) 100% |████████████████████████████████| 81kB 29kB/s Collecting jupyter-core>=4.4.0 (from notebook->jupyter) Downloading https://files.pythonhosted.org/packages/1d/44/065d2d7bae7bebc06f1dd70d23c36da8c50c0f08b4236716743d706762a8/jupyter_core-4.4.0-py2.py3-none-any.whl (126kB) 100% |████████████████████████████████| 133kB 85kB/s Collecting ipython-genutils (from notebook->jupyter) Collecting terminado>=0.8.1 (from notebook->jupyter) Collecting jinja2 (from notebook->jupyter) Downloading https://files.pythonhosted.org/packages/7f/ff/ae64bacdfc95f27a016a7bed8e8686763ba4d277a78ca76f32659220a731/Jinja2-2.10-py2.py3-none-any.whl (126kB) 100% |████████████████████████████████| 133kB 69kB/s Collecting pyzmq>=17 (from notebook->jupyter) Downloading https://files.pythonhosted.org/packages/de/3d/9cf4b0f42741aca91464d12d08636a404026ee0831b4758b10b0b77e4c24/pyzmq-17.0.0-cp27-cp27m-macosx_10_6_intel.whl (1.1MB) 100% |████████████████████████████████| 1.1MB 67kB/s Collecting nbformat (from notebook->jupyter) Downloading https://files.pythonhosted.org/packages/da/27/9a654d2b6cc1eaa517d1c5a4405166c7f6d72f04f6e7eea41855fe808a46/nbformat-4.4.0-py2.py3-none-any.whl (155kB) 100% |████████████████████████████████| 163kB 152kB/s Collecting Send2Trash (from notebook->jupyter) Collecting mistune>=0.7.4 (from nbconvert->jupyter) Collecting bleach (from nbconvert->jupyter) Collecting testpath (from nbconvert->jupyter) Downloading https://files.pythonhosted.org/packages/15/19/d7bc380c479a184e4a5a9ce516e4e2a773165f89b445f7cdced83d94de25/testpath-0.3.1-py2.py3-none-any.whl (161kB) 100% |████████████████████████████████| 163kB 52kB/s Collecting pandocfilters>=1.4.1 (from nbconvert->jupyter) Collecting entrypoints>=0.2.2 (from nbconvert->jupyter) Collecting widgetsnbextension~=3.2.0 (from ipywidgets->jupyter) Downloading https://files.pythonhosted.org/packages/ff/fa/64acc09fc845a6b2dc0724d6f3f81e829b778ed5e9a7559567b4f19a3f4b/widgetsnbextension-3.2.1-py2.py3-none-any.whl (2.2MB) 100% |████████████████████████████████| 2.2MB 86kB/s Collecting python-dateutil>=2.1 (from jupyter-client->jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/cf/f5/af2b09c957ace60dcfac112b669c45c8c97e32f94aa8b56da4c6d1682825/python_dateutil-2.7.3-py2.py3-none-any.whl (211kB) 100% |████████████████████████████████| 215kB 65kB/s Collecting decorator (from ipython->jupyter-console->jupyter) Collecting simplegeneric>0.8 (from ipython->jupyter-console->jupyter) Collecting backports.shutil-get-terminal-size; python_version == "2.7" (from ipython->jupyter-console->jupyter) Collecting appnope; sys_platform == "darwin" (from ipython->jupyter-console->jupyter) Collecting pexpect; sys_platform != "win32" (from ipython->jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/b9/3c/e51a76fe78a877afd9acd95a51e3b7610c0983b19ef5a5dfa11735a619b8/pexpect-4.5.0-py2.py3-none-any.whl (57kB) 100% |████████████████████████████████| 61kB 99kB/s Collecting pickleshare (from ipython->jupyter-console->jupyter) Requirement already satisfied: setuptools>=18.5 in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from ipython->jupyter-console->jupyter) (18.5) Collecting pathlib2; python_version == "2.7" or python_version == "3.3" (from ipython->jupyter-console->jupyter) Collecting wcwidth (from prompt-toolkit<2.0.0,>=1.0.0->jupyter-console->jupyter) Collecting six>=1.9.0 (from prompt-toolkit<2.0.0,>=1.0.0->jupyter-console->jupyter) Requirement already satisfied: futures in /Library/Python/2.7/site-packages (from tornado>=4.0->ipykernel->jupyter) (3.2.0) Requirement already satisfied: singledispatch in /Library/Python/2.7/site-packages (from tornado>=4.0->ipykernel->jupyter) (3.4.0.3) Requirement already satisfied: backports_abc>=0.4 in /Library/Python/2.7/site-packages (from tornado>=4.0->ipykernel->jupyter) (0.5) Collecting enum34; python_version == "2.7" (from traitlets>=4.1.0->ipykernel->jupyter) Collecting ptyprocess; os_name != "nt" (from terminado>=0.8.1->notebook->jupyter) Collecting MarkupSafe>=0.23 (from jinja2->notebook->jupyter) Collecting jsonschema!=2.5.0,>=2.4 (from nbformat->notebook->jupyter) Collecting html5lib!=1.0b1,!=1.0b2,!=1.0b3,!=1.0b4,!=1.0b5,!=1.0b6,!=1.0b7,!=1.0b8,>=0.99999999pre (from bleach->nbconvert->jupyter) Downloading https://files.pythonhosted.org/packages/a5/62/bbd2be0e7943ec8504b517e62bab011b4946e1258842bc159e5dfde15b96/html5lib-1.0.1-py2.py3-none-any.whl (117kB) 100% |████████████████████████████████| 122kB 57kB/s Collecting configparser>=3.5; python_version == "2.7" (from entrypoints>=0.2.2->nbconvert->jupyter) Collecting scandir; python_version < "3.5" (from pathlib2; python_version == "2.7" or python_version == "3.3"->ipython->jupyter-console->jupyter) Collecting functools32; python_version == "2.7" (from jsonschema!=2.5.0,>=2.4->nbformat->notebook->jupyter) Collecting webencodings (from html5lib!=1.0b1,!=1.0b2,!=1.0b3,!=1.0b4,!=1.0b5,!=1.0b6,!=1.0b7,!=1.0b8,>=0.99999999pre->bleach->nbconvert->jupyter) Installing collected packages: ipython-genutils, decorator, six, enum34, traitlets, jupyter-core, pyzmq, python-dateutil, jupyter-client, simplegeneric, backports.shutil-get-terminal-size, pygments, appnope, ptyprocess, pexpect, scandir, pathlib2, pickleshare, wcwidth, prompt-toolkit, ipython, ipykernel, jupyter-console, terminado, MarkupSafe, jinja2, mistune, functools32, jsonschema, nbformat, webencodings, html5lib, bleach, testpath, pandocfilters, configparser, entrypoints, nbconvert, Send2Trash, notebook, qtconsole, widgetsnbextension, ipywidgets, jupyter Found existing installation: six 1.4.1 Cannot uninstall 'six'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall. admin:~ admin$ |
망할...
Cannot uninstall 'six'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
이라며 설치가 안됨
이런 충공깽 같으니.... 좀 찾아보니
pip대신 easy_install을 사용해서 해결했다는 블로그를 찾았다
easy_install을 사용해 six를 업그레이드한 뒤 six를 제외해 scrapy를 설치하니 문제 없이 설치 되었다. 는 내용
출처: https://crowjdh.blogspot.kr/2016/01/el-capitanmac-osx-10111-scrapy.html
sudo easy_install -U six
sudo -H pip install scrapy --ignore-installed six
위 두 명령어를 사용하면 되나보다
admin:~ admin$ sudo easy_install -U six Password: Searching for six Reading https://pypi.python.org/simple/six/ Best match: six 1.11.0 Processing six-1.11.0.tar.gz Writing /tmp/easy_install-aVCTWs/six-1.11.0/setup.cfg Running six-1.11.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-aVCTWs/six-1.11.0/egg-dist-tmp-sup5oa no previously-included directories found matching 'documentation/_build' zip_safe flag not set; analyzing archive contents... six: module references __path__ creating /Library/Python/2.7/site-packages/six-1.11.0-py2.7.egg Extracting six-1.11.0-py2.7.egg to /Library/Python/2.7/site-packages Adding six 1.11.0 to easy-install.pth file
Installed /Library/Python/2.7/site-packages/six-1.11.0-py2.7.egg Processing dependencies for six Finished processing dependencies for six admin:~ admin$ sudo -H pip install scrapy --ignore-installed six Collecting scrapy Downloading https://files.pythonhosted.org/packages/db/9c/cb15b2dc6003a805afd21b9b396e0e965800765b51da72fe17cf340b9be2/Scrapy-1.5.0-py2.py3-none-any.whl (251kB) 100% |████████████████████████████████| 256kB 123kB/s Collecting six Collecting w3lib>=1.17.0 (from scrapy) Collecting service-identity (from scrapy) Collecting cssselect>=0.9 (from scrapy) Collecting parsel>=1.1 (from scrapy) Collecting pyOpenSSL (from scrapy) Downloading https://files.pythonhosted.org/packages/96/af/9d29e6bd40823061aea2e0574ccb2fcf72bfd6130ce53d32773ec375458c/pyOpenSSL-18.0.0-py2.py3-none-any.whl (53kB) 100% |████████████████████████████████| 61kB 143kB/s Collecting queuelib (from scrapy) Collecting PyDispatcher>=2.0.5 (from scrapy) Collecting Twisted>=13.1.0 (from scrapy) Downloading https://files.pythonhosted.org/packages/12/2a/e9e4fb2e6b2f7a75577e0614926819a472934b0b85f205ba5d5d2add54d0/Twisted-18.4.0.tar.bz2 (3.0MB) 100% |████████████████████████████████| 3.0MB 116kB/s Collecting lxml (from scrapy) 100% |████████████████████████████████| 8.8MB 118kB/s Collecting attrs (from service-identity->scrapy) Collecting pyasn1 (from service-identity->scrapy) Downloading https://files.pythonhosted.org/packages/a0/70/2c27740f08e477499ce19eefe05dbcae6f19fdc49e9e82ce4768be0643b9/pyasn1-0.4.3-py2.py3-none-any.whl (72kB) 100% |████████████████████████████████| 81kB 128kB/s Collecting pyasn1-modules (from service-identity->scrapy) Downloading https://files.pythonhosted.org/packages/e9/51/bcd96bf6231d4b2cc5e023c511bee86637ba375c44a6f9d1b4b7ad1ce4b9/pyasn1_modules-0.2.1-py2.py3-none-any.whl (60kB) 100% |████████████████████████████████| 61kB 122kB/s Collecting cryptography>=2.2.1 (from pyOpenSSL->scrapy) Downloading https://files.pythonhosted.org/packages/58/c1/23bea66007d4be75ce02056fac665f9a207535e89fb3c7931420fa4a5f57/cryptography-2.2.2-cp27-cp27m-macosx_10_6_intel.whl (1.5MB) 100% |████████████████████████████████| 1.5MB 45kB/s Collecting zope.interface>=4.4.2 (from Twisted>=13.1.0->scrapy) Downloading https://files.pythonhosted.org/packages/ac/8a/657532df378c2cd2a1fe6b12be3b4097521570769d4852ec02c24bd3594e/zope.interface-4.5.0.tar.gz (151kB) 100% |████████████████████████████████| 153kB 94kB/s Collecting constantly>=15.1 (from Twisted>=13.1.0->scrapy) Collecting incremental>=16.10.1 (from Twisted>=13.1.0->scrapy) Collecting Automat>=0.3.0 (from Twisted>=13.1.0->scrapy) Collecting hyperlink>=17.1.1 (from Twisted>=13.1.0->scrapy) Collecting cffi>=1.7; platform_python_implementation != "PyPy" (from cryptography>=2.2.1->pyOpenSSL->scrapy) Downloading https://files.pythonhosted.org/packages/7e/4a/b647e46faaa2dcfb16069b6aad2d8509982fd63710a325b8ad7db80f18be/cffi-1.11.5-cp27-cp27m-macosx_10_6_intel.whl (238kB) 100% |████████████████████████████████| 245kB 127kB/s Collecting enum34; python_version < "3" (from cryptography>=2.2.1->pyOpenSSL->scrapy) Collecting idna>=2.1 (from cryptography>=2.2.1->pyOpenSSL->scrapy) Downloading https://files.pythonhosted.org/packages/27/cc/6dd9a3869f15c2edfab863b992838277279ce92663d334df9ecf5106f5c6/idna-2.6-py2.py3-none-any.whl (56kB) 100% |████████████████████████████████| 61kB 66kB/s Collecting asn1crypto>=0.21.0 (from cryptography>=2.2.1->pyOpenSSL->scrapy) Downloading https://files.pythonhosted.org/packages/ea/cd/35485615f45f30a510576f1a56d1e0a7ad7bd8ab5ed7cdc600ef7cd06222/asn1crypto-0.24.0-py2.py3-none-any.whl (101kB) 100% |████████████████████████████████| 102kB 114kB/s Collecting ipaddress; python_version < "3" (from cryptography>=2.2.1->pyOpenSSL->scrapy) Collecting setuptools (from zope.interface>=4.4.2->Twisted>=13.1.0->scrapy) Downloading https://files.pythonhosted.org/packages/7f/e1/820d941153923aac1d49d7fc37e17b6e73bfbd2904959fffbad77900cf92/setuptools-39.2.0-py2.py3-none-any.whl (567kB) 100% |████████████████████████████████| 573kB 141kB/s Collecting pycparser (from cffi>=1.7; platform_python_implementation != "PyPy"->cryptography>=2.2.1->pyOpenSSL->scrapy) Downloading https://files.pythonhosted.org/packages/8c/2d/aad7f16146f4197a11f8e91fb81df177adcc2073d36a17b1491fd09df6ed/pycparser-2.18.tar.gz (245kB) 100% |████████████████████████████████| 256kB 128kB/s Installing collected packages: six, w3lib, attrs, pycparser, cffi, enum34, idna, asn1crypto, ipaddress, cryptography, pyOpenSSL, pyasn1, pyasn1-modules, service-identity, cssselect, lxml, parsel, queuelib, PyDispatcher, setuptools, zope.interface, constantly, incremental, Automat, hyperlink, Twisted, scrapy Running setup.py install for pycparser ... done Running setup.py install for PyDispatcher ... done Running setup.py install for zope.interface ... done Running setup.py install for Twisted ... done Successfully installed Automat-0.6.0 PyDispatcher-2.0.5 Twisted-18.4.0 asn1crypto-0.24.0 attrs-18.1.0 cffi-1.11.5 constantly-15.1.0 cryptography-2.2.2 cssselect-1.0.3 enum34-1.1.6 hyperlink-18.0.0 idna-2.6 incremental-17.5.0 ipaddress-1.0.22 lxml-4.2.1 parsel-1.4.0 pyOpenSSL-18.0.0 pyasn1-0.4.3 pyasn1-modules-0.2.1 pycparser-2.18 queuelib-1.5.0 scrapy-1.5.0 service-identity-17.0.0 setuptools-39.2.0 six-1.11.0 w3lib-1.19.0 zope.interface-4.5.0 admin:~ admin$ |
이번엔 뭔가 설치가 잘된것 같으니 재도전을 해봄
admin:~ admin$ sudo python -m pip install --upgrade pip Password: The directory '/Users/admin/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. The directory '/Users/admin/Library/Caches/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. Requirement already up-to-date: pip in /Library/Python/2.7/site-packages/pip-10.0.1-py2.7.egg (10.0.1) admin:~ admin$ sudo python -m pip install jupyter The directory '/Users/admin/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. The directory '/Users/admin/Library/Caches/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag. Collecting jupyter Collecting jupyter-console (from jupyter) Collecting ipykernel (from jupyter) Downloading https://files.pythonhosted.org/packages/8e/65/c7ca3e3d05f9bd51b3010076b84f4e7304b12d0abf62a48f6cec2c90c019/ipykernel-4.8.2-py2-none-any.whl (108kB) 100% |████████████████████████████████| 112kB 283kB/s Collecting notebook (from jupyter) Downloading https://files.pythonhosted.org/packages/c0/66/cfed59f574d03ca5f1b7c5281485a9cc9a0f21342d24e0f057572316dae5/notebook-5.5.0-py2.py3-none-any.whl (8.4MB) 100% |████████████████████████████████| 8.4MB 63kB/s Collecting nbconvert (from jupyter) Downloading https://files.pythonhosted.org/packages/39/ea/280d6c0d92f8e3ca15fd798bbcc2ea141489f9539de7133d8fe10ea4b049/nbconvert-5.3.1-py2.py3-none-any.whl (387kB) 100% |████████████████████████████████| 389kB 149kB/s Collecting qtconsole (from jupyter) Downloading https://files.pythonhosted.org/packages/90/ff/047e0dca2627b162866920e7aa93f04523c0ae81e5c67060eec85701992d/qtconsole-4.3.1-py2.py3-none-any.whl (108kB) 100% |████████████████████████████████| 112kB 125kB/s Collecting ipywidgets (from jupyter) Downloading https://files.pythonhosted.org/packages/7d/24/fabc09ad81c6071159a4d12d5bfbddcbea69bd9e3b16c3250ef300c0285f/ipywidgets-7.2.1-py2.py3-none-any.whl (106kB) 100% |████████████████████████████████| 112kB 90kB/s Collecting jupyter-client (from jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/94/dd/fe6c4d683b09eb05342bd2816b7779663f71762b4fa9c2d5203d35d17354/jupyter_client-5.2.3-py2.py3-none-any.whl (89kB) 100% |████████████████████████████████| 92kB 113kB/s Collecting ipython (from jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/52/19/aadde98d6bde1667d0bf431fb2d22451f880aaa373e0a241c7e7cb5815a0/ipython-5.7.0-py2-none-any.whl (760kB) 100% |████████████████████████████████| 768kB 81kB/s Collecting pygments (from jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/02/ee/b6e02dc6529e82b75bb06823ff7d005b141037cb1416b10c6f00fc419dca/Pygments-2.2.0-py2.py3-none-any.whl (841kB) 100% |████████████████████████████████| 849kB 172kB/s Collecting prompt-toolkit<2.0.0,>=1.0.0 (from jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/d1/b0/1a6c262da35c779dd79550137aa7c298a424987240a28792ec5ccf48f848/prompt_toolkit-1.0.15-py2-none-any.whl (247kB) 100% |████████████████████████████████| 256kB 214kB/s Requirement already satisfied: tornado>=4.0 in /Library/Python/2.7/site-packages (from ipykernel->jupyter) (5.0.2) Collecting traitlets>=4.1.0 (from ipykernel->jupyter) Downloading https://files.pythonhosted.org/packages/93/d6/abcb22de61d78e2fc3959c964628a5771e47e7cc60d53e9342e21ed6cc9a/traitlets-4.3.2-py2.py3-none-any.whl (74kB) 100% |████████████████████████████████| 81kB 222kB/s Collecting jupyter-core>=4.4.0 (from notebook->jupyter) Downloading https://files.pythonhosted.org/packages/1d/44/065d2d7bae7bebc06f1dd70d23c36da8c50c0f08b4236716743d706762a8/jupyter_core-4.4.0-py2.py3-none-any.whl (126kB) 100% |████████████████████████████████| 133kB 133kB/s Requirement already satisfied: ipython-genutils in /Library/Python/2.7/site-packages (from notebook->jupyter) (0.2.0) Collecting terminado>=0.8.1 (from notebook->jupyter) Collecting jinja2 (from notebook->jupyter) Downloading https://files.pythonhosted.org/packages/7f/ff/ae64bacdfc95f27a016a7bed8e8686763ba4d277a78ca76f32659220a731/Jinja2-2.10-py2.py3-none-any.whl (126kB) 100% |████████████████████████████████| 133kB 108kB/s Collecting pyzmq>=17 (from notebook->jupyter) Downloading https://files.pythonhosted.org/packages/de/3d/9cf4b0f42741aca91464d12d08636a404026ee0831b4758b10b0b77e4c24/pyzmq-17.0.0-cp27-cp27m-macosx_10_6_intel.whl (1.1MB) 100% |████████████████████████████████| 1.1MB 144kB/s Collecting nbformat (from notebook->jupyter) Downloading https://files.pythonhosted.org/packages/da/27/9a654d2b6cc1eaa517d1c5a4405166c7f6d72f04f6e7eea41855fe808a46/nbformat-4.4.0-py2.py3-none-any.whl (155kB) 100% |████████████████████████████████| 163kB 55kB/s Collecting Send2Trash (from notebook->jupyter) Collecting mistune>=0.7.4 (from nbconvert->jupyter) Collecting bleach (from nbconvert->jupyter) Collecting testpath (from nbconvert->jupyter) Downloading https://files.pythonhosted.org/packages/15/19/d7bc380c479a184e4a5a9ce516e4e2a773165f89b445f7cdced83d94de25/testpath-0.3.1-py2.py3-none-any.whl (161kB) 100% |████████████████████████████████| 163kB 140kB/s Collecting pandocfilters>=1.4.1 (from nbconvert->jupyter) Collecting entrypoints>=0.2.2 (from nbconvert->jupyter) Collecting widgetsnbextension~=3.2.0 (from ipywidgets->jupyter) Downloading https://files.pythonhosted.org/packages/ff/fa/64acc09fc845a6b2dc0724d6f3f81e829b778ed5e9a7559567b4f19a3f4b/widgetsnbextension-3.2.1-py2.py3-none-any.whl (2.2MB) 100% |████████████████████████████████| 2.2MB 140kB/s Collecting python-dateutil>=2.1 (from jupyter-client->jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/cf/f5/af2b09c957ace60dcfac112b669c45c8c97e32f94aa8b56da4c6d1682825/python_dateutil-2.7.3-py2.py3-none-any.whl (211kB) 100% |████████████████████████████████| 215kB 117kB/s Requirement already satisfied: decorator in /Library/Python/2.7/site-packages (from ipython->jupyter-console->jupyter) (4.3.0) Collecting simplegeneric>0.8 (from ipython->jupyter-console->jupyter) Collecting backports.shutil-get-terminal-size; python_version == "2.7" (from ipython->jupyter-console->jupyter) Collecting appnope; sys_platform == "darwin" (from ipython->jupyter-console->jupyter) Collecting pexpect; sys_platform != "win32" (from ipython->jupyter-console->jupyter) Downloading https://files.pythonhosted.org/packages/b9/3c/e51a76fe78a877afd9acd95a51e3b7610c0983b19ef5a5dfa11735a619b8/pexpect-4.5.0-py2.py3-none-any.whl (57kB) 100% |████████████████████████████████| 61kB 169kB/s Collecting pickleshare (from ipython->jupyter-console->jupyter) Requirement already satisfied: setuptools>=18.5 in /Library/Python/2.7/site-packages (from ipython->jupyter-console->jupyter) (39.2.0) Collecting pathlib2; python_version == "2.7" or python_version == "3.3" (from ipython->jupyter-console->jupyter) Collecting wcwidth (from prompt-toolkit<2.0.0,>=1.0.0->jupyter-console->jupyter) Requirement already satisfied: six>=1.9.0 in /Library/Python/2.7/site-packages/six-1.11.0-py2.7.egg (from prompt-toolkit<2.0.0,>=1.0.0->jupyter-console->jupyter) (1.11.0) Requirement already satisfied: futures in /Library/Python/2.7/site-packages (from tornado>=4.0->ipykernel->jupyter) (3.2.0) Requirement already satisfied: singledispatch in /Library/Python/2.7/site-packages (from tornado>=4.0->ipykernel->jupyter) (3.4.0.3) Requirement already satisfied: backports_abc>=0.4 in /Library/Python/2.7/site-packages (from tornado>=4.0->ipykernel->jupyter) (0.5) Requirement already satisfied: enum34; python_version == "2.7" in /Library/Python/2.7/site-packages (from traitlets>=4.1.0->ipykernel->jupyter) (1.1.6) Collecting ptyprocess; os_name != "nt" (from terminado>=0.8.1->notebook->jupyter) Collecting MarkupSafe>=0.23 (from jinja2->notebook->jupyter) Collecting jsonschema!=2.5.0,>=2.4 (from nbformat->notebook->jupyter) Collecting html5lib!=1.0b1,!=1.0b2,!=1.0b3,!=1.0b4,!=1.0b5,!=1.0b6,!=1.0b7,!=1.0b8,>=0.99999999pre (from bleach->nbconvert->jupyter) Downloading https://files.pythonhosted.org/packages/a5/62/bbd2be0e7943ec8504b517e62bab011b4946e1258842bc159e5dfde15b96/html5lib-1.0.1-py2.py3-none-any.whl (117kB) 100% |████████████████████████████████| 122kB 97kB/s Collecting configparser>=3.5; python_version == "2.7" (from entrypoints>=0.2.2->nbconvert->jupyter) Collecting scandir; python_version < "3.5" (from pathlib2; python_version == "2.7" or python_version == "3.3"->ipython->jupyter-console->jupyter) Collecting functools32; python_version == "2.7" (from jsonschema!=2.5.0,>=2.4->nbformat->notebook->jupyter) Collecting webencodings (from html5lib!=1.0b1,!=1.0b2,!=1.0b3,!=1.0b4,!=1.0b5,!=1.0b6,!=1.0b7,!=1.0b8,>=0.99999999pre->bleach->nbconvert->jupyter) Installing collected packages: traitlets, jupyter-core, pyzmq, python-dateutil, jupyter-client, simplegeneric, backports.shutil-get-terminal-size, pygments, appnope, ptyprocess, pexpect, scandir, pathlib2, pickleshare, wcwidth, prompt-toolkit, ipython, ipykernel, jupyter-console, terminado, MarkupSafe, jinja2, mistune, functools32, jsonschema, nbformat, webencodings, html5lib, bleach, testpath, pandocfilters, configparser, entrypoints, nbconvert, Send2Trash, notebook, qtconsole, widgetsnbextension, ipywidgets, jupyter Found existing installation: python-dateutil 1.5 Uninstalling python-dateutil-1.5: Could not install packages due to an EnvironmentError: [('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/__init__.py', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/__init__.py', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/__init__.py'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/__init__.pyc', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/__init__.pyc', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/__init__.pyc'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/easter.py', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/easter.py', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/easter.py'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/easter.pyc', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/easter.pyc', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/easter.pyc'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/parser.py', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/parser.py', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/parser.py'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/parser.pyc', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/parser.pyc', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/parser.pyc'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/relativedelta.py', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/relativedelta.py', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/relativedelta.py'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/relativedelta.pyc', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/relativedelta.pyc', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/relativedelta.pyc'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/rrule.py', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/rrule.py', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/rrule.py'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/rrule.pyc', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/rrule.pyc', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/rrule.pyc'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/tz.py', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/tz.py', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/tz.py'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/tz.pyc', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/tz.pyc', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/tz.pyc'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/tzwin.py', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/tzwin.py', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/tzwin.py'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/tzwin.pyc', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/tzwin.pyc', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/tzwin.pyc'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/zoneinfo/__init__.py', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/zoneinfo/__init__.py', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/zoneinfo/__init__.py'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/zoneinfo/__init__.pyc', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/zoneinfo/__init__.pyc', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/zoneinfo/__init__.pyc'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/zoneinfo/zoneinfo-2010g.tar.gz', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/zoneinfo/zoneinfo-2010g.tar.gz', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/zoneinfo/zoneinfo-2010g.tar.gz'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/zoneinfo', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/zoneinfo', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil/zoneinfo'"), ('/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil', '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil', "[Errno 1] Operation not permitted: '/private/tmp/pip-uninstall-fYkZVU/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/dateutil'")]
admin:~ admin$ |
망할 뭐가 이렇게 에러가 많아...
이쯤되면 설치하지 말라는소리...
python3를 설치해서 진행하면 되는건가 싶기도...