如果你電腦裡只有python3可以使用以下方法
mkvirtualenv -p python scrapy
如果還有python2
mkvirtualenv -p python3 scrapy
pip install lxml
pip install parsel
pip install w3lib
pip install twisted
pip install cryptography
pip install pyopenssl
在安裝twisted的時候可能會報錯,你可以手動安裝
32位的
pip install twisted-17.5.0-cp36-cp36m-win32.whl
64位的
pip install twisted-17.5.0-cp36-cp36m-win_amd64.whl
提取碼:9udi
安裝scrapy
pip install scrapy
到這就安裝成功了
scrapy startproject 專案名
cd 專案名
scrapy genspider 爬蟲名 "你的爬取範圍(**)"
scrapy crawl 爬蟲名
modulenotfounderror: no module named 『win32api』
解決辦法
pip install pywin32
ubuntu16 04下安裝scrapy框架
一.按照官方文件的說明,安裝scrapy 需要以下程式或者庫 1 python 2.7 2 lxml。most linux distributions ships prepackaged versions of lxml.otherwise refer to 3 openssl。this comes...
Windows 10 安裝Scrapy 爬蟲框架
官方安裝文件 1.安裝python 官網 org downloads 然後在cmdpip install scrapy,出現報錯。少了twisted,於是安裝twisted 2.安裝twisted安裝 pip install 檔名 python python 3.6 1 v3.6 1 69c0db5...
scrapy 安裝 安裝scrapy時出錯
python3環境下安裝scrapy 環境 win7,win10 python 3.5.2 1.首先開啟anaconda prompt 執行命令 pip install scrapy 若未出錯,表示安裝成功,鍵入以下命令測試即可 python 進入python環境 再鍵入 import scrapy...