加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > Python > 正文

python – 用pip在Mac上安装Pandas

发布时间:2020-12-20 13:00:23 所属栏目:Python 来源:网络整理
导读:我试图用pip安装Pandas,但遇到了问题.以下是详细信息: Mac OS Sierrawhich python = /usr/bin/pythonpython --version = Python 2.7.10Inside "/System/Library/Frameworks/Python.framework/Versions" there is the following2.3 2.5 2.6 2.7 Current 我希
我试图用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”中将pandas链接到Python 2.7.10

当我做pip安装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 pandas.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读