HOWTOs
About
Search
python-docutils
- Python-based text processing system
ChangeLog
Web site:
http://docutils.sourceforge.net/
HOWTO
# python-docutils
# ===============
#
Python
2.3 - 2.6 or 3.1
# As I write this, it worked for me using Python 2.7.2
cd
test -f installed/python-docutils.tar.gz &&
mv -f installed/python-docutils.tar.gz .
test ! -f python-docutils.tar.gz &&
wget http://docutils.svn.sourceforge.net/viewvc/docutils/trunk/docutils/\
?view=tar -O python-docutils.tar.gz
mkdir -p -m 0700 src
cd src
test -d ./docutils && rm -r ./docutils
tar xzvf ~/python-docutils.tar.gz
cd docutils
test $UID = 0 && chown -R root:root .
# Become root to install it
su
# Install it
./setup.py install
# Make sure your non-root user can remove the source later
chown -R $USER .
chmod -R u+w .
# Become your non-root user again
exit
cd
mkdir -p -m 0700 installed
mv -f ./python-docutils.tar.gz installed/
List of HOWTOs
Web page itself last updated:
2023-12-20 8:06pm (EST -0500)
HOWTO last updated:
2012-03-08 10:15pm
Copyright © 2001-2024
Jason Englander
. All Rights reserved.