mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
python: Update README to talkabout notmuch, not cnotmuch
The old instructions were telling users to do "easy_install cnotmuch" which installed some old, stale bindings. The new instructions should be much more effective.
This commit is contained in:
parent
25c66663f8
commit
f35db275c4
1 changed files with 9 additions and 9 deletions
|
@ -10,12 +10,12 @@ If you have downloaded the full source tarball, you can create the
|
|||
documentation with sphinx installed, go to the docs directory and
|
||||
"make html". A static version of the documentation is available at:
|
||||
|
||||
http://packages.python.org/cnotmuch/
|
||||
http://packages.python.org/notmuch/
|
||||
|
||||
The current source code is being hosted at
|
||||
http://bitbucket.org/spaetz/cnotmuch which also provides an issue
|
||||
tracker, and release downloads. This package is tracked by the python
|
||||
package index repository at `http://pypi.python.org/pypi/cnotmuch`_ and can thus be installed on a user's computer easily via "sudo easy_install cnotmuch" (you will still need to install the notmuch shared library separately as it is not included in this package).
|
||||
package index repository at `http://pypi.python.org/pypi/notmuch`_ and can thus be installed on a user's computer easily via "sudo easy_install notmuch" (you will still need to install the notmuch shared library separately as it is not included in this package).
|
||||
|
||||
The original source has been provided by (c)Sebastian Spaeth, 2010.
|
||||
All code is available under the GNU GPLv3+ (see docs/COPYING) unless specified otherwise.
|
||||
|
@ -24,15 +24,15 @@ All code is available under the GNU GPLv3+ (see docs/COPYING) unless specified o
|
|||
INSTALLATION & DEINSTALL
|
||||
------------------------
|
||||
|
||||
cnotmuch is available on pypi.python.org. This means you can do
|
||||
"easy_install cnotmuch" on your linux box and it will get installed
|
||||
into:
|
||||
The notmuch python module is available on pypi.python.org. This means
|
||||
you can do "easy_install notmuch" on your linux box and it will get
|
||||
installed into:
|
||||
|
||||
/usr/local/lib/python2.x/dist-packages/
|
||||
|
||||
For uninstalling, you'll need to remove the "cnotmuch-0.1-py2.x.egg"
|
||||
directory and delete one entry in the "easy-install.pth" file in that
|
||||
directory.
|
||||
For uninstalling, you'll need to remove the "notmuch-0.4-py2.x.egg"
|
||||
(or similar) directory and delete one entry in the "easy-install.pth"
|
||||
file in that directory.
|
||||
|
||||
It needs to have a libnotmuch.so or libnotmuch.so.1 available in some
|
||||
library folder or will raise an exception when loading.
|
||||
|
@ -41,7 +41,7 @@ library folder or will raise an exception when loading.
|
|||
|
||||
Usage
|
||||
-----
|
||||
For more examples of how to use the cnotmuch interface, have a look at the
|
||||
For more examples of how to use the notmuch interface, have a look at the
|
||||
notmuch "binary" and the generated documentation.
|
||||
|
||||
Example session:
|
||||
|
|
Loading…
Reference in a new issue