1

Scrapy は以前のバージョンのインストールを許可していないようです。

リストされているメソッドは次のとおりです。

easy_install -U Scrapy

と:

pip install Scrapy

どちらの方法でも最新バージョンの Scrapy をダウンロードするだけですが、これは望ましくありません。バージョン0.12をダウンロードするためにscrapyを取得するにはどうすればよいですか?

4

2 に答える 2

2

手動でインストールしてみてください。

vic@wic:~$ git clone git://github.com/scrapy/scrapy.git
Cloning into 'scrapy'...
remote: Counting objects: 24639, done.
remote: Compressing objects: 100% (15949/15949), done.
remote: Total 24639 (delta 8402), reused 24317 (delta 8158)
Receiving objects: 100% (24639/24639), 10.73 MiB | 639 KiB/s, done.
Resolving deltas: 100% (8402/8402), done.

vic@wic:~$ cd scrapy/

vic@wic:~/scrapy$ git tag
0.10
0.10-rc1
0.10.1
0.10.2
0.10.3
0.14.0
0.14.1
0.14.2
0.14.3
0.14.4
0.7
0.7-rc1
0.8
0.9
0.9-rc1

vic@wic:~/scrapy$ git branch -a
* master
  remotes/origin/0.12
  remotes/origin/0.14                                                                                                                                               
  remotes/origin/HEAD -> origin/master                                                                                                                              
  remotes/origin/master                                                                                                                                             
  remotes/origin/singleton_removal                                                                                                                                  

vic@wic:~/scrapy$ git checkout 0.12                                                                                                                                 
Branch 0.12 set up to track remote branch 0.12 from origin.
Switched to a new branch '0.12'

vic@wic:~/scrapy$ sudo python setup.py install
于 2012-07-07T11:59:21.860 に答える