2016-06-06 4 views
0

Ich versuche, 'mrjob' Paket in Python 2.7 zu installieren. Wenn ich jedoch 'pip2.7 install mrjob' ausgeführt habe, erscheint der folgende Fehler. Hat jemand die Lösung dafür? Hinweis: Ich habe Python 2.7 und 3.5 auf meinem Mac installiert.Kann nicht pip2.7 installieren auf Mac

Exception: 
Traceback (most recent call last): 
    File "/Library/Python/2.7/site-packages/pip/basecommand.py", line 215, 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 742, in install 
    **kwargs 
    File "/Library/Python/2.7/site-packages/pip/req/req_install.py", line 831, in install 
    self.move_wheel_files(self.source_dir, root=root, prefix=prefix) 
    File "/Library/Python/2.7/site-packages/pip/req/req_install.py", line 1032, in move_wheel_files 
    isolated=self.isolated, 
    File "/Library/Python/2.7/site-packages/pip/wheel.py", line 346, in move_wheel_files 
    clobber(source, lib_dir, True) 
    File "/Library/Python/2.7/site-packages/pip/wheel.py", line 317, in clobber 
    ensure_dir(destdir) 
    File "/Library/Python/2.7/site-packages/pip/utils/__init__.py", line 83, in ensure_dir 
    os.makedirs(path) 
    File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py", line 157, in makedirs 
    mkdir(name, mode) 
OSError: [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/boto' 
+0

Haben Sie die Installation als root? Verzeichnis "site-packages" für Python 2.7 ist beschreibbar? –

Antwort

1

Führen Sie es mit erhöhten Rechten aus.

sudo pip2.7 installieren mrjob

+0

Hey Limbo, ich habe versucht, deinen Befehl auszuführen und es funktioniert immer noch nicht. Das ist was passiert 'OSError: [Errno 1] Operation nicht erlaubt: '/tmp/pip-tU5xq5-uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/six-1.4.1 -py2.7.egg-info'' – Fxs7576

+0

Ich habe den folgenden Code ausgeführt und es funktioniert: 'sudo pip2.7 install --ignore-installierter mrjob' – Fxs7576