首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >用pip在Mac上安装Pandas

用pip在Mac上安装Pandas
EN

Stack Overflow用户
提问于 2017-03-06 01:57:13
回答 6查看 41.2K关注 0票数 5

我试图用Pandas安装pip,但遇到了一个问题。以下是详细信息:

代码语言:javascript
复制
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时,会收到以下错误消息:

代码语言:javascript
复制
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'

谢谢你的帮助。

EN

回答 6

Stack Overflow用户

回答已采纳

发布于 2017-03-06 03:11:41

尝试以sudo的形式运行命令。

代码语言:javascript
复制
sudo pip install pandas

Python包安装在操作系统文件系统中,并不是所有用户都有写文件的权限。这就是为什么您需要以sudo的形式运行命令,因为sudo提高了您的特权。

编辑:这似乎得到了一些提高,所以我增加了一些明确的问题,有关用户的具体安装。如果您的用例与:pip install --user pandas相匹配,您还可以仅为用户安装它。

票数 14
EN

Stack Overflow用户

发布于 2018-12-15 22:06:55

对于使用mojave的mac终端,

代码语言:javascript
复制
pip3 install pandas

代码语言:javascript
复制
pip3 install --upgrade pip

之后

代码语言:javascript
复制
pip install pandas
票数 6
EN

Stack Overflow用户

发布于 2017-04-24 15:38:51

如果您使用Python3.0,那么pip3 install pandas而不是pip install pandas应该能做到这一点。

票数 4
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/42616376

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档