PyOGP Client Library Development Sandbox

From Second Life Wiki
Revision as of 12:48, 27 June 2008 by Tao Takashi (talk | contribs) (New page: We will first run down the general explanation and add platform specific notes later. == Prerequisites == You need to have the following things installed: * [http://subversion.tigris.or...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

We will first run down the general explanation and add platform specific notes later.

Prerequisites

You need to have the following things installed:


Getting the buildout

We use zc.buildout to automatically setup a development environment. buildout gives you the ability to install packages only locally instead of your global python installation. It's sort of a local python installation which helps you avoiding version conflicts of packages.

1. First check out the buildout into a directory of your choice:

svn co http://svn.secondlife.com/trac/linden/browser/projects/2008/pyogp/buildouts/libdev/trunk libdev

2. Enter the directory and run the bootstrap.py file:

cd libdev
python bootstrap.py

3. This creates a bunch of directories and the bin/buildout script (bin\buildout.exe on windows). We now run this:

 bin/buildout -v

or on Windows:

 bin\buildout.exe -v

4. The development sandbox is ready. There now is a bin/pyogp which is a python interpreter which contains all the installed packaged and the pyogp library and related projects.

Using the login example

To test this installation you can (at least at this stage of the project) try the following:

 bin/login <firstname> <lastname>

Give your Avatar name and it will ask for a password. Then it tries to login using the Linden Lab Agent Domain and placing the avatar on a different's grid region.


The structure of the sandbox

Now you might wonder where the code is as the login script only refers to it. See