What version of zope and python schooltool is using? I want to install it from ports on freebsd.

Asked by kjb

What version of zope and python schooltool is using? I want to install it from ports on freebsd i need to know what software i have to install.

Link to webpage with manual installation instruction will be best for me.

Question information

Language:
English Edit question
Status:
Answered
For:
SchoolTool Edit question
Assignee:
No assignee Edit question
Last query:
Last reply:
Revision history for this message
Gediminas Paulauskas (menesis) said :
#1

SchoolTool supports Python 2.6 and 2.7.

Look at the end of Makefile for ubuntu-environment target, it installs build dependencies, or see
http://book.schooltool.org/dev_sandbox.html#build-dependencies

The build instructions at http://book.schooltool.org/dev_sandbox.html are simple, just run `make` and all Zope and other dependencies will be downloaded and built in your sandbox.

Zope is not a monolithic framework anymore, so does not have a single version. It is not Zope 2.

Revision history for this message
Douglas Cerna (replaceafill) said :
#2

Last week I got curious and here's how I got SchoolTool running in a fresh FreeBSD 9.1:

Install some tools in a fresh system
====================================

cd /usr/ports/ftp/wget/
make install clean
cd /usr/ports/lang/python27
make install clean
cd /usr/ports/devel/py-virtualenv
make install clean

Install some dependencies
=========================

cd /usr/ports/devel/automake
make install clean
cd /usr/ports/devel/icu
make install clean
cd /usr/ports/graphics/jpeg
make install clean
cd /usr/ports/textproc/libxslt
make install clean
cd /usr/ports/print/freetype2
make install clean

Download and install SchoolTool
===============================

cd ~
wget --no-check-certificate https://launchpad.net/schooltool/flourish/2.4a2/+download/schooltool-2.4a2.tar.gz
tar -xzf schooltool-2.4a2.tar.gz
cd schooltool-2.4a2

#
# Edit buildout.cfg to include additional components under [package]
# See http://book.schooltool.org/dev_sandbox.html#quickstart
#

make python
python/bin/python bootstrap.py --distribute
setenv CFLAGS "-I/usr/local/include/ -L/usr/local/lib"
bin/make-schooltool-instance instance instance_type=schooltool
bin/start-schooltool-instance instance

Can you help with this problem?

Provide an answer of your own, or ask kjb for more information if necessary.

To post a message you must log in.