簡體   English   中英

使用 pip 在 Mac 上安裝 Pandas

[英]Install Pandas on Mac with pip

我正在嘗試使用pip安裝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'

謝謝你的幫助。

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

sudo pip install pandas

Python軟件包安裝在操作系統文件系統中,並非所有用戶都有權將文件寫入。 這就是為什么你需要以sudo運行命令的原因,因為sudo會提升你的權限來執行此操作。

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

如果你在Python 3.0上, pip3 install pandas而不是pip install pandas應該可以解決問題

在終端窗口上運行pip3安裝pandas在MAC OS上為我工作。

對於使用mojave的mac終端

pip3 install pandas

要么

pip3 install --upgrade pip

pip install pandas

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

另外,我強烈建議使用anaconda來管理python版本。

除了其他答案之外,我還必須考慮使用 MacOS 上的一些編譯器特定問題

sudo CFLAGS='-Wno-implicit-function-declaration' pip3 install pandas

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM