doc: fixed intro-install xref

--HG--
extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40656
This commit is contained in:
Pablo Hoffman 2009-01-06 14:34:26 +00:00
parent 9da9041248
commit 9d6defa643
2 changed files with 8 additions and 6 deletions

View File

@ -1,11 +1,11 @@
.. _install:
.. highlight:: sh
.. _intro-install:
============
Installation
============
.. highlight:: sh
Requirements
============

View File

@ -1,16 +1,18 @@
.. _tutorial1:
.. highlight:: sh
======================
Creating a new project
======================
In this tutorial, we'll teach you how to scrape http://www.google.com/dirhp Google's web directory.
We'll assume that Scrapy is already installed in your system, if not see :ref:`install`.
We'll assume that Scrapy is already installed in your system, if not see :ref:`intro-install`.
For starting a new project, enter the directory where you'd like your project to be located, and run::
scrapy-admin.py startproject google
$ scrapy-admin.py startproject google
As long as Scrapy is well installed and the path is set, this should create a directory called "google" containing the following files:
@ -25,6 +27,6 @@ As long as Scrapy is well installed and the path is set, this should create a di
::
export PYTHONPATH=/path/to/your/project
$ export PYTHONPATH=/path/to/your/project
Now you can continue with the next part of the tutorial: :ref:`tutorial2`.