Created
March 14, 2016 02:38
-
-
Save CleitonDeLima/9c8d4392053df16a182e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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