mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Fixing PIL issues.
This commit is contained in:
parent
2408156024
commit
30352fa0fb
2 changed files with 3 additions and 3 deletions
|
@ -22,7 +22,6 @@ lxml==3.1.0
|
|||
mongoengine==0.8.2
|
||||
nltk==2.0.4
|
||||
oauth2==1.5.211
|
||||
PIL==1.1.7
|
||||
psutil==0.6.1
|
||||
pyes==0.19.1
|
||||
pyelasticsearch==0.5
|
||||
|
|
5
fabfile.py
vendored
5
fabfile.py
vendored
|
@ -177,6 +177,7 @@ def setup_common():
|
|||
setup_pymongo_repo()
|
||||
setup_logrotate()
|
||||
setup_nginx()
|
||||
# setup_imaging()
|
||||
setup_munin()
|
||||
|
||||
def setup_all():
|
||||
|
@ -245,7 +246,7 @@ def setup_task(queue=None, skip_common=False):
|
|||
def setup_installs():
|
||||
sudo('apt-get -y update')
|
||||
sudo('apt-get -y upgrade')
|
||||
sudo('apt-get -y install build-essential gcc scons libreadline-dev sysstat iotop git python-dev locate python-software-properties software-properties-common libpcre3-dev libncurses5-dev libdbd-pg-perl libssl-dev make pgbouncer python-setuptools python-psycopg2 libyaml-0-2 python-yaml python-numpy python-scipy python-imaging curl monit ufw libjpeg8 libjpeg62-dev libfreetype6 libfreetype6-dev')
|
||||
sudo('apt-get -y install build-essential gcc scons libreadline-dev sysstat iotop git python-dev locate python-software-properties software-properties-common libpcre3-dev libncurses5-dev libdbd-pg-perl libssl-dev make pgbouncer python-setuptools python-psycopg2 libyaml-0-2 python-yaml python-numpy python-scipy curl monit ufw libjpeg8 libjpeg62-dev libfreetype6 libfreetype6-dev python-imaging')
|
||||
|
||||
sudo("ln -s /usr/lib/x86_64-linux-gnu/libjpeg.so /usr/lib")
|
||||
sudo("ln -s /usr/lib/x86_64-linux-gnu/libfreetype.so /usr/lib")
|
||||
|
@ -352,7 +353,7 @@ def setup_python():
|
|||
|
||||
# PIL - Only if python-imaging didn't install through apt-get, like on Mac OS X.
|
||||
def setup_imaging():
|
||||
sudo('easy_install pil')
|
||||
sudo('easy_install --always-unzip pil')
|
||||
|
||||
def setup_supervisor():
|
||||
sudo('apt-get -y install supervisor')
|
||||
|
|
Loading…
Add table
Reference in a new issue