Then install the libraries:
sudo pip install -r requirements/postgresql.txtI got the following error:
http://downloads.sourceforge.net/project/booktype/Booktype-1.6.1/Booktype-1.6.1.tar.gz
sudo git clone https://github.com/sourcefabric/Booktype.git
sudo pip install PIL --allow-external PIL --allow-unverified PIL
sudo apt-get install libpq-dev
sudo pip install -r requirements/postgresql.txt
sudo git clone -b master --single-branch https://github.com/sourcefabric/Booktype.gitI've updated the manual to reflect this change, thanks for alerting me to the issue.
DATABASES = {
'default'
: {
'ENGINE'
:
'django.db.backends.postgresql_psycopg2'
,
'NAME'
:
'booktype'
,
'USER'
:
'booktype'
,
'PASSWORD'
:
'ENTER PASSWORD HERE'
,
'HOST'
:
'localhost'
,
'PORT'
:
''
}
}
./manage.py collectstaticcommand. This is explained better in the 2.0 documentation at http://sourcefabric.booktype.pro/booktype-20-for-authors-and-publishers/installation-on-gnulinux/
./manage.py collectstaticThis is another step of incorrect documentation, because there is no "manage.py" file in the 1.6.1 created files
django-admin.py collectstaticSo to correct the problem you suggest I do this (assume I am following the steps here taken https://forum.sourcefabric.org/discussion/comment/31656#Comment_31656)
# Need to enable external location for the PIL library
--allow-external PIL
--allow-unverified PIL
PIL
It looks like you're new here. If you want to get involved, click one of these buttons!