2017-03-06 366 views
0

我試圖安裝Pandaspip,但遇到了問題。下面是詳細信息:用pip在Mac上安裝Pandas

Mac OS Sierra 
which python => /usr/bin/python 
python --version => Python 2.7.10 
Inside "/System/Library/Frameworks/Python.framework/Versions" there is the following 
2.3 2.5 2.6 2.7 Current 

我想熊貓被掛在 「的/ usr/bin中/ Python的」 Python 2.7.10

當我做pip install pandas,我收到以下錯誤信息:

Collecting pandas 
    Using cached pandas-0.19.2-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl 

Requirement already satisfied: pytz>=2011k in 

/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from pandas) 

Requirement already satisfied: python-dateutil in 

/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from pandas) 

Requirement already satisfied: numpy>=1.7.0 in 

/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from pandas) 

Installing collected packages: pandas 

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 784, in install 
    **kwargs 

    File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/req/req_install.py", line 851, in install 
    self.move_wheel_files(self.source_dir, root=root, prefix=prefix) 

    File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/req/req_install.py", line 1064, in move_wheel_files 
    isolated=self.isolated, 

    File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/wheel.py", line 345, in move_wheel_files 
    clobber(source, lib_dir, True) 

    File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/wheel.py", line 316, in clobber 
    ensure_dir(destdir) 

    File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/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/pandas' 

感謝您的幫助。

+2

嘗試將其作爲sudo運行。 sudo pip安裝熊貓 – bdeo

+0

@abccd,你是對的 – user58925

+0

@bdeo,that worked :-) 你能解釋爲什麼它的工作?謝謝,只是爲了讓我對發生的事情有所瞭解, – user58925

回答

8

嘗試以sudo身份運行pip install命令。

sudo pip install pandas 

Python程序包安裝在操作系統文件系統中,並非所有用戶都有寫入文件的權限。這就是爲什麼你需要像sudo一樣運行命令,因爲sudo提升了你的權限。

編輯:這似乎得到了一些upvotes,所以我已經添加了一些清晰的問題關於用戶特定的安裝。如果您的用例符合您的使用情況,您也可以只爲您的用戶安裝:pip install --user pandas

1

是的,用sudo運行應該可以解決問題。雖然它的frowned upon。你也可以這樣做: pip install --user <packagename>

此外,我強烈建議使用anaconda爲你管理python版本。

1

pip3 install pandas而不是pip install pandas如果你是Python的3.0

0

運行PIP3終端窗口上安裝熊貓在MAC OS爲我工作應該做的伎倆。