【问题标题】:Unable to install NLTK on MacOS High Sierra无法在 MacOS High Sierra 上安装 NLTK
【发布时间】:2018-05-04 04:42:29
【问题描述】:

此文字是添加一些额外文字以逃避错误,与问题无关。请见谅!


安装:

sudo pip install -U nltk

在我的笔记本电脑上安装 NLTK 时出现以下错误。

请帮忙!

错误

 Collecting nltk
 Downloading nltk-3.2.5.tar.gz (1.2MB)
 100% |████████████████████████████████| 1.2MB 201kB/s 
 Collecting six (from nltk)
 Downloading six-1.11.0-py2.py3-none-any.whl

 Installing collected packages: six, nltk
 Found existing installation: six 1.4.1
 DEPRECATION: Uninstalling a distutils installed project (six) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
 Uninstalling six-1.4.1:
 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 778, in install
requirement.uninstall(auto_confirm=True)
 File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/req/req_install.py", line 754, in uninstall
paths_to_remove.remove(auto_confirm)
 File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/req/req_uninstall.py", line 115, in remove
renames(path, new_path)
 File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/utils/__init__.py", line 267, in renames
shutil.move(old, new)
 File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 302, in move
copy2(src, real_dst)
 File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 131, in copy2
copystat(src, dst)
 File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 103, in copystat
os.chflags(dst, st.st_flags)

OSError: [Errno 1] Operation not permitted: '/tmp/pip-0HVpKZ uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/six-1.4.1-py2.7.egg-info'

我试过这个命令,但没有用

python -m pip install --upgrade pip setuptools wheel (Even this does not install)

【问题讨论】:

  • pip install --user --upgrade nltk

标签: python nltk macos-high-sierra


【解决方案1】:

最好在安装包之前创建一个虚拟环境,见http://docs.python-guide.org/en/latest/dev/virtualenvs/

尽管如此,TL;DR:

pip install --user --upgrade nltk

【讨论】:

  • 谢谢。关于上述为什么不起作用的更多详细信息?
  • 简而言之,Mac 不喜欢sudo 而Mac 更喜欢pip install --user。这是操作系统的事情;它处理 python 包的方式与 Linux 的处理方式略有不同 =(
  • 也许,更熟悉 Mac 怪癖的人可以为您提供更多信息,说明为什么在 Mac 上不首选 sudopip 而不使用 --user
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2018-08-13
  • 2018-12-05
  • 2018-07-20
  • 2018-06-11
  • 2018-01-27
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多