2017-06-27 3 views
2

Wenn ich mit tensorflow in Mac OS gespielt, ich diesen Fehler hätte:Mac: OSError: [Errno 1] Betrieb nicht erlaubt: ‚/ tmp/Pip-XcfgD6

Installing collected packages: html5lib, bleach, markdown, backports.weakref, numpy, funcsigs, pbr, mock, protobuf, tensorflow 
    Found existing installation: numpy 1.8.0rc1 
    DEPRECATION: Uninstalling a distutils installed project (numpy) 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 numpy-1.8.0rc1: 
Exception: 
Traceback (most recent call last): 
    File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/basecommand.py", line 215, in main 
    status = self.run(options, args) 
    File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/commands/install.py", line 342, in run 
    prefix=options.prefix_path, 
    File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/req/req_set.py", line 778, in install 
    requirement.uninstall(auto_confirm=True) 
    File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/req/req_install.py", line 754, in uninstall 
    paths_to_remove.remove(auto_confirm) 
    File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/req/req_uninstall.py", line 115, in remove 
    renames(path, new_path) 
    File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/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: '/var/folders/nl/69lb138j255bkbzzjdx1hb6h0000gp/T/pip-1Jo9RF-uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/numpy-1.8.0rc1-py2.7.egg-info' 

Was ist das und wie tun Ich befestige es?

Antwort

8

Fügen Sie das Argument --ignore-installed dem Pip-Befehl hinzu, den Sie ausführen. Siehe this question for more.

+0

Das hat für mich funktioniert, aber ist es gefährlich? –

+0

@MichaelL. Es sollte nicht sein. Es sei denn, Sie haben zuvor installierte Module geändert, die mit dem Befehl pip installiert werden. –

5

Nach ein paar google, ich habe das durch Mac OS SIP-Maschine verursacht wurde.

So reran ich Pip wieder mit dem Follow-Befehl:

pip install tensorflow --user -U 

ich schließlich erfolgreich installiert tensorflow.

Verwandte Themen