Die Pip-Installation wurde einfacher, bevor ich es wusste
python get-pip.py
Auch wenn Sie dies eingeben
Collecting pip Using cached pip-8.1.1-py2.py3-none-any.whl Collecting wheel Using cached wheel-0.29.0-py2.py3-none-any.whl Installing collected packages: pip, wheel Exception: Traceback (most recent call last): File "/var/folders/1s/zx_tbsz12q11ff8h79g8yqy40000gn/T/tmpXAEHyo/pip.zip/pip/basecommand.py", line 209, in main status = self.run(options, args) File "/var/folders/1s/zx_tbsz12q11ff8h79g8yqy40000gn/T/tmpXAEHyo/pip.zip/pip/commands/install.py", line 317, in run prefix=options.prefix_path, File "/var/folders/1s/zx_tbsz12q11ff8h79g8yqy40000gn/T/tmpXAEHyo/pip.zip/pip/req/req_set.py", line 732, in install **kwargs File "/var/folders/1s/zx_tbsz12q11ff8h79g8yqy40000gn/T/tmpXAEHyo/pip.zip/pip/req/req_install.py", line 835, in install self.move_wheel_files(self.source_dir, root=root, prefix=prefix) File "/var/folders/1s/zx_tbsz12q11ff8h79g8yqy40000gn/T/tmpXAEHyo/pip.zip/pip/req/req_install.py", line 1030, in move_wheel_files isolated=self.isolated, File "/var/folders/1s/zx_tbsz12q11ff8h79g8yqy40000gn/T/tmpXAEHyo/pip.zip/pip/wheel.py", line 344, in move_wheel_files clobber(source, lib_dir, True) File "/var/folders/1s/zx_tbsz12q11ff8h79g8yqy40000gn/T/tmpXAEHyo/pip.zip/pip/wheel.py", line 315, in clobber ensure_dir(destdir) File "/var/folders/1s/zx_tbsz12q11ff8h79g8yqy40000gn/T/tmpXAEHyo/pip.zip/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/pip'
So etwas kommt meistens heraus.
Also auch wenn Sie so etwas setzen
#### **`curl -kL https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python`**
↓
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0
100 260 100 260 0 0 95 0 0:00:02 0:00:02 --:--:-- 0
You're using an outdated location for the get-pip.py script, please use the one available from https://bootstrap.pypa.io/get-pip.py
Sie werden erfahren, dass es veraltet ist.
↓ Vielleicht ist diese eine Zeile die Lösung.
curl -kL https://bootstrap.pypa.io/get-pip.py | sudo python
Es scheint, dass sich der Speicherort von get-pip.py geändert hat. Selbst wenn Ihnen gesagt wird, dass "dieses Verzeichnis nicht Ihre Autorität ist", können Sie es sudo.
(Zusatz)
Erstens hat Python 3.5, aber 2.7 scheint sicherer zu sein.
Wenn Sie pip normal einsetzen, liegt es außerhalb der Administratorberechtigung und es scheint ziemlich problematisch zu sein. Daher scheint es gut, einen Download-Speicherort zu erstellen, damit er in der Administratorberechtigung enthalten ist. http://hacknote.jp/archives/19074/
Recommended Posts