Mac OS安装Scrapy报错error: command '/usr/bin/clang' failed with exit status 1解决方案

一、场景简述

Mac OS系统下在terminal下安装Scrapy(pip3 install scrapy)报错如下

error: command '/usr/bin/clang' failed with exit status 1

二、场景分析

因为Mac OS系统底层时C,编译器用Clang,所以需要安装xcode

三、解决方案

在terminal进行如下操作

xcode-select --install

然后再进行安装Scrapy即可

注意:笔者用的是Python3,所以使用了pip3 install scrapy

你可能感兴趣的:(●,Python数据获取/处理)