简体   繁体   English

在Mac上使用pip安装Scrapy时出错

[英]Error when installing Scrapy with pip on Mac

I run pip install Scrapy and everything seems to download fine, but installation ultimately fails. 我运行pip install Scrapy ,一切似乎都可以正常下载,但安装最终失败。

Is there some sort of an issue with permissions? 权限是否存在某种问题? I'm a novice, so any help much appreciated! 我是新手,因此对您有所帮助!

Abridged terminal output: 删节终端输出:

...    

running install_egg_info

running egg_info

writing requirements to Scrapy.egg-info/requires.txt

writing Scrapy.egg-info/PKG-INFO

writing top-level names to Scrapy.egg-info/top_level.txt

writing dependency_links to Scrapy.egg-info/dependency_links.txt

warning: manifest_maker: standard file '-c' not found


reading manifest file 'Scrapy.egg-info/SOURCES.txt'

reading manifest template 'MANIFEST.in'

no previously-included directories found matching 'docs/build'

writing manifest file 'Scrapy.egg-info/SOURCES.txt'

Copying Scrapy.egg-info to /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/Scrapy-0.16.3-py2.7.egg-info

running install_scripts

copying build/scripts-2.7/scrapy -> /Library/Frameworks/Python.framework/Versions/2.7/bin

error: /Library/Frameworks/Python.framework/Versions/2.7/bin/scrapy: Permission denied

----------------------------------------
Command /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python -c "import setuptools;__file__='/Users/pavelfage/build/Scrapy/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --single-version-externally-managed --record /var/folders/x6/wf5kq24j109dnkhgjcs822ym0000gn/T/pip-QgV9nv-record/install-record.txt failed with error code 1

To write in /Library/Frameworks/* use sudo pip install scrapy 要在/ Library / Frameworks / *中编写,请使用sudo pip install scrapy

If doing using virtual environment, first activate the environment and then install 如果使用虚拟环境,请先激活环境,然后再安装

 $ . /path/to/venv/bin/activate
 $ pip install scrapy

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM