Mercurial > hg > AuthRPC
diff INSTALL.txt @ 30:a99009a7013c 0.3.1a
- Use generator with __getfile__ (uses much less memory)
- Fixed security issue with __getfile__ - do not allow access to whole disk!
- Handle exceptions in auth function
- Fixed encrypting of no password
- Changed README code examples
author | Ben Croston <ben@croston.org> |
---|---|
date | Thu, 05 Apr 2012 20:45:56 +0100 |
parents | 9459d63c1558 |
children |
line wrap: on
line diff
--- a/INSTALL.txt Tue Feb 28 13:49:33 2012 +0000 +++ b/INSTALL.txt Thu Apr 05 20:45:56 2012 +0100 @@ -1,4 +1,10 @@ -python setup.py install +To install system-wide: +$ sudo python setup.py install or -python3 setup.py install +$ sudo python3 setup.py install +To just install to your home directory: +$ python setup.py install --user + or +$ python3 setup.py install --user +