web-dev-qa-db-ja.com

MacでJupyterのインストールが失敗する

Mac(OS X El Capitan)にJupyterをインストールしようとしていますが、次の応答でエラーが発生します。

Sudo pip install -U jupyter

最初はダウンロード/インストールは正常に開始されますが、次にこれに遭遇します。

Installing collected packages: six, singledispatch, certifi, backports-abc, tornado, jupyter-core, pyzmq, jupyter-client, functools32, jsonschema, nbformat, pygments, mistune, MarkupSafe, jinja2, nbconvert, path.py, pickleshare, simplegeneric, setuptools, gnureadline, appnope, ptyprocess, pexpect, ipython, ipykernel, terminado, notebook, ipywidgets, jupyter-console, qtconsole, jupyter
  Found existing installation: six 1.4.1
    DEPRECATION: Uninstalling a distutils installed project (six) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
    Uninstalling six-1.4.1:
Exception:
Traceback (most recent call last):
  File "/Library/Python/2.7/site-packages/pip/basecommand.py", line 209, in main
    status = self.run(options, args)
  File "/Library/Python/2.7/site-packages/pip/commands/install.py", line 317, in run
    prefix=options.prefix_path,
  File "/Library/Python/2.7/site-packages/pip/req/req_set.py", line 726, in install
    requirement.uninstall(auto_confirm=True)
  File "/Library/Python/2.7/site-packages/pip/req/req_install.py", line 746, in uninstall
    paths_to_remove.remove(auto_confirm)
  File "/Library/Python/2.7/site-packages/pip/req/req_uninstall.py", line 115, in remove
    renames(path, new_path)
  File "/Library/Python/2.7/site-packages/pip/utils/__init__.py", line 267, in renames
    shutil.move(old, new)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 302, in move
    copy2(src, real_dst)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 131, in copy2
    copystat(src, dst)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 103, in copystat
    os.chflags(dst, st.st_flags)
OSError: [Errno 1] Operation not permitted: '/tmp/pip-ByX5xW-uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/six-1.4.1-py2.7.Egg-info'

これを修正するにはどうすればよいですか?

6
helloB

ElCapitanに同梱されているデフォルトのOSX Pythonは、残念ながらかなりひどく誤ってパッケージ化されています(grrr、Apple)。すでにインストールされているかなり奇妙なサードパーティパッケージだけでなく、奇妙な(古い)それらのパッケージのベータ版。さらに、それらは非常に システム保護 です。

これにより、デフォルトのpythonむしろは(あなたが知っているように)作業を行うのに不向きになります。特定のケースでは、juypterは6つのライブラリの最新バージョンをインストールしたいと考えていますが、システムにインストールされたバージョンは奇妙な古いバージョンであり、pipに更新させません(jupyterには更新されたバージョンが必要です)。

一般に、将来のすべての頭痛の種を軽減するために、Pythonの別のディストリビューションを入手し、それをパスに配置して、新しいデフォルトにすることをお勧めします。いくつかの選択肢があります。重要なのは、一度に1つだけを使用することです(そうしないと、お互いを混乱させたり、混乱させたりする傾向があります)。

  1. Python.org -Python開発者自身から
  2. Homebrew --OSX用のunixyパッケージマネージャー。正常に機能しているpythonパッケージ
  3. Anaconda Python -科学的なpythonディストリビューションで、多くの「インストールが難しい」科学的パッケージがすでに利用可能で、「機能している」(jupyterを含む)。

何を選ぶべきかわからない場合は、今のところAnacondaを使用することをお勧めします。

8
Ivo

またはあなたはただ試すことができます

Sudo pip install -U jupyter --upgrade --ignore-installed six
2

このコマンドは、何も無視せずに、現在ログインしているユーザーのjupyterをインストールします。

Sudo pip install --user jupyter
2

Ivo の答えは正しいです-最善の解決策は、pythonインストールを修復することです。Homebrew(私が強くお勧めします)を使用した例を以下に示します。

Homebrewをインストールします。

/usr/bin/Ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update
brew upgrade

Pythonをインストールします。

brew install python

またはPython 3:

brew install python3

アップグレード/インストール:

pip install --upgrade pip setuptools

Jupyterをインストールします。

pip install jupyter

注:Sudo -Hpip installとともに使用する必要がある場合があります

0
D-W