mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-26 17:24:38 +00:00
make the install scrapy code steps a list, so it doesn't show as sepparate points in the doc overview (we need an style guiide)
--HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%40753
This commit is contained in:
parent
ddf0366037
commit
1e002a0c98
@ -62,37 +62,30 @@ please download the latest development version from the Subversion_ repository.
|
||||
|
||||
To do this, follow this steps:
|
||||
|
||||
1. Check out Scrapy code
|
||||
------------------------
|
||||
|
||||
Check out Scrapy code (you will need to have Subversion_ installed)::
|
||||
1. Check out Scrapy code (you will need to have Subversion_ installed)::
|
||||
|
||||
svn co http://svn.scrapy.org/scrapy/trunk/ scrapy-trunk
|
||||
svn co http://svn.scrapy.org/scrapy/trunk/ scrapy-trunk
|
||||
|
||||
2. Add Scrapy to your Python path
|
||||
---------------------------------
|
||||
2. Add Scrapy to your Python path:
|
||||
|
||||
You can do this by making a symbolic link to your system ``site-packages``
|
||||
directory like this::
|
||||
You can do this by making a symbolic link to your system ``site-packages``
|
||||
directory like this::
|
||||
|
||||
ln -s `pwd`/scrapy-trunk/scrapy SITE-PACKAGES/scrapy
|
||||
ln -s `pwd`/scrapy-trunk/scrapy SITE-PACKAGES/scrapy
|
||||
|
||||
Where ``SITE-PACKAGES`` is the location of your system ``site-packages``
|
||||
directory, to find this out execute the following::
|
||||
Where ``SITE-PACKAGES`` is the location of your system ``site-packages``
|
||||
directory, to find this out execute the following::
|
||||
|
||||
python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"
|
||||
python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()"
|
||||
|
||||
Or by adding the ``scrapy-trunk`` directory to your ``PYTHONPATH`` environment
|
||||
variable, like this::
|
||||
Or by adding the ``scrapy-trunk`` directory to your ``PYTHONPATH`` environment
|
||||
variable, like this::
|
||||
|
||||
export PYTHONPATH=`pwd`/scrapy-trunk:$PYTHONPATH
|
||||
export PYTHONPATH=`pwd`/scrapy-trunk:$PYTHONPATH
|
||||
|
||||
3. Make the scrapy-admin.py script executable
|
||||
---------------------------------------------
|
||||
|
||||
Make the ``scrapy-trunk/scrapy/bin/scrapy-admin.py`` script executable
|
||||
system-wide. To do this create a symbolic link to the file in a directory on
|
||||
your sistem path, like::
|
||||
3. Make the ``scrapy-trunk/scrapy/bin/scrapy-admin.py`` script executable
|
||||
system-wide. To do this create a symbolic link to the file in a directory on
|
||||
your sistem path, like::
|
||||
|
||||
ln -s `pwd`/scrapy-trunk/scrapy/bin/scrapy-admin.py /usr/local/bin
|
||||
ln -s `pwd`/scrapy-trunk/scrapy/bin/scrapy-admin.py /usr/local/bin
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user