2016-10-05 3 views
-1

スクリーニングが表示されないWindows専用のコマンド(クロールチェックリストの編集解析ベンチ)が表示されるのはなぜですか?スクリーニングが表示されないWindows専用のコマンド(クロールチェックリストの編集解析ベンチ)が理由を知っている可能性がありますか?

C:\Python27\Scripts>scrapy -h 
Scrapy 1.1.3 - no active project 

Usage: 
    scrapy <command> [options] [args] 

Available commands: 
    bench   Run quick benchmark test 
    commands 
    fetch   Fetch a URL using the Scrapy downloader 
    genspider  Generate new spider using pre-defined templates 
    runspider  Run a self-contained spider (without creating a project) 
    settings  Get settings values 
    shell   Interactive scraping console 
    startproject Create new project 
    version  Print Scrapy version 
    view   Open URL in browser, as seen by Scrapy 

    [ more ]  More commands available when run from project directory 

Use "scrapy <command> -h" to see more info about a command 

答えて

1

より[全表示]コマンドを使用できるプロジェクトディレクトリから

を実行したときにこれは、あなたのターミナルでプロジェクトのディレクトリに移動する必要があることを意味します。これを行うには、コマンドcd(変更ディレクトリの略)を使用できます。

$ cd C:\projects\myproject 
$ scrapy --help 
関連する問題