Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/install/booktype_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ def getDistribution():
sys.exit(1)

if platform in ['debian', 'ubuntu']:
command = '. %s/bin/activate && pip install Django==1.3 South==0.7.5 unidecode lxml PIL' % projectDir
command = '. %s/bin/activate && pip install Django==1.3 South==0.7.5 unidecode lxml Pillow' % projectDir
elif platform in ['osx']:
p = subprocess.Popen('find /usr/local/ -name xml2-config', shell=True,
stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=True)
Expand All @@ -355,7 +355,7 @@ def getDistribution():
sys.exit(1)


command = 'cd %s && git clone https://github.com/sourcefabric/Booktype.git' % projectDir
command = 'cd %s && git clone https://github.com/aerkalov/Booktype.git' % projectDir
print fmt('\n$ ' + command +'\n', 'blue')
ret = subprocess.call(command, shell=True)
if ret != 0:
Expand Down