LoginSignup
0
0

More than 3 years have passed since last update.

Raspbian(Jessie)にScrapyをインストールする

Last updated at Posted at 2017-03-05

Python,パッケージのマネージャ(pip)インストール

sudo apt-get install python
sudo apt-get install python-pip

Unicode設定

cd /usr/local/lib/python2.7/site-packages
nano sitecustomize.py
sitecustomize.py
import sys
sys.setdefaultencoding('utf-8')

scrapyに必要なライブラリのインストール

sudo apt-get install python-twisted
sudo apt-get install libxml2-dev
sudo apt-get install python-lxml

scrapyインストール

pip install scrapy
0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0