diff options
| author | PJ Eby <distutils-sig@python.org> | 2005-09-24 14:30:43 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2005-09-24 14:30:43 +0000 |
| commit | 1b1eab50ae3a7a0fd734305cac331b1d5c311f26 (patch) | |
| tree | 890930e08cd5de3d16646c5faaefe3b978c159e5 | |
| parent | 3adaf85ef1eb6d3df18c58dc5b84dcc248d3e364 (diff) | |
| download | python-setuptools-git-1b1eab50ae3a7a0fd734305cac331b1d5c311f26.tar.gz | |
Fix typo. Add setup for include/python2.X directory in non-root install
instructions.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041248
| -rwxr-xr-x | EasyInstall.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/EasyInstall.txt b/EasyInstall.txt index bcbeafd7..16fa6889 100755 --- a/EasyInstall.txt +++ b/EasyInstall.txt @@ -72,7 +72,7 @@ effect. Be sure to add a ``;`` after the last item on ``PATH`` before adding the scripts directory to it. Note that instead of changing your ``PATH`` to include the Python scripts -directory, you can also retarget the installtion location for scripts so they +directory, you can also retarget the installation location for scripts so they go on a directory that's already on the ``PATH``. For more information see the sections below on `Command-Line Options`_ and `Configuration Files`_. You can pass command line options (such as ``--script-dir``) to ``ez_setup.py`` to @@ -732,6 +732,8 @@ libraries:: rm ~/lib/python2.4/site-packages mkdir ~/lib/python2.4/site-packages ln -s /usr/local/lib/python2.4/site-packages/* ~/lib/python2.4/site-packages + mkdir ~/include/python2.4 + ln -s /usr/local/include/python2.4/* ~/include/python2.4 If your ``sys.exec_prefix`` was different from your ``sys.prefix``, you will also need to do this:: |
