Ubuntu18安装scrapy,出现command 'gcc' failed with exit status 1 解决方案

安装scrapy,获取其他出现这个问题

解决方案如下: 1. 参考自己的python 的版本
当遇到这个错误,请在错误之前注意它可能说你是缺少一个包或头文件,你会发现那些并安装它们,并验证其是否工作正常。(例如ssl - > libssl)

#对于Python 2.x使用:
sudo apt-get install python-dev
#对于Python 2.7使用:
sudo apt-get install libffi-dev
#对于Python 3.x使用:
sudo apt-get install python3-dev
#对于Python 3.4使用:
sudo apt-get install python3.4-dev
#对于Python 3.5使用:
sudo apt-get install python3.5-dev
#对于Python 3.6使用:
sudo apt-get install python3.6-dev
#对于Python 3.7使用:
sudo apt-get install python3.7-dev

测试成功!on ubuntu 18
回答来源:stackoverflow.com/questions

# 安装命令
sudo easy_install Scrapy

Done!

你可能感兴趣的:(后段开发笔记,笔记,python3.x)