Saturday, January 19, 2008
Plone 3.0 install with buildout on Ubuntu 7.10 Gutsy
It took me a few tries to figure this out, so I decided I'll write it up. Some of the commands are from what I remember doing, so they may not be exactly right. I am following the guide from plone.org:
http://plone.org/documentation/tutorial/buildout
# Need this package:
sudo apt-get install build-essential
# (This one took me a while to figure out, but it is what allows compilations to work. Just having # gcc and what I thought were system libraries doesn't do it.)
# Needed to install Python 2.4 package:
sudo apt-get install python2.4-dev
# Installed PIL package:
sudo apt-get install python-imaging
# Installed 'ez_setup.py' using 'python2.4':
wget http://peak.telecommunity.com/dist/ez_setup.py
sudo python2.4 ez_setup.py
# Get paster:
sudo easy_install-2.4 -U ZopeSkel
# Use paster:
# http://plone.org/documentation/tutorial/buildout/creating-a-buildout-for-your-project
http://plone.org/documentation/tutorial/buildout
# Need this package:
sudo apt-get install build-essential
# (This one took me a while to figure out, but it is what allows compilations to work. Just having # gcc and what I thought were system libraries doesn't do it.)
# Needed to install Python 2.4 package:
sudo apt-get install python2.4-dev
# Installed PIL package:
sudo apt-get install python-imaging
# Installed 'ez_setup.py' using 'python2.4':
wget http://peak.telecommunity.com/dist/ez_setup.py
sudo python2.4 ez_setup.py
# Get paster:
sudo easy_install-2.4 -U ZopeSkel
# Use paster:
# http://plone.org/documentation/tutorial/buildout/creating-a-buildout-for-your-project
