Skip to content

Instantly share code, notes, and snippets.

@CleitonDeLima
Created March 14, 2016 02:38
Show Gist options
  • Save CleitonDeLima/9c8d4392053df16a182e to your computer and use it in GitHub Desktop.
Save CleitonDeLima/9c8d4392053df16a182e to your computer and use it in GitHub Desktop.
sudo apt-get install build-essential libxslt1-dev wget libxml2-dev libxml2-utils zlib1g-dev libjpeg-dev libfreetype6-dev poppler-utils wv python2.7-dev python-setuptools -y
sudo apt-get install python-pip
sudo pip install virtualenv
virtualenv -p python2 --no-site-packages ProjetoPlone/.ProjetoPlone
cd ProjetoPlone
source .ProjetoPlone/bin/activate
pip install Pillow
pip install zc.buildout
echo """
[buildout]
extends =
http://dist.plone.org/release/5-latest/versions.cfg
parts =
instance
[instance]
recipe = plone.recipe.zope2instance
user = admin:admin
http-address = 8080
eggs =
Plone
Pillow
""" > buildout.cfg
.ProjetoPlone/bin/buildout
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment