Locked History Actions

Diff for "GettingQuakePy"

Differences between revisions 1 and 13 (spanning 12 versions)
Revision 1 as of 2008-05-05 05:47:48
Size: 670
Comment:
Revision 13 as of 2017-02-17 11:10:44
Size: 1858
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
You can check out !QuakePy from our Subversion repository at https://quake.ethz.ch/svn/quakepy. You need a Subversion client on your machine to do so. The development of QuakePy supporting QuakeML version 1.0.1 is not being continued. Therefore, SVN access is not available any longer. Please download the latest archived version from the table below. There is an experimental version of QuakePy that supports QuakeML 1.2. It can be found at https://github.com/QuakePy/quakepy12.
Line 5: Line 5:
The checkout can be performed using the following commands: == Archive ==
Line 7: Line 7:
{{{
svn checkout https://quake.ethz.ch/svn/quakepy/trunk quakepy
}}}

This will create a directory quakepy in your current directory which contains the !QuakePy code.
||<style="background-color: #E6EDFF;"> '''Version''' ||<style="background-color: #E6EDFF;"> '''Revision''' ||<style="background-color: #E6EDFF;"> '''Release Date''' ||<style="background-color: #E6EDFF;"> '''QuakeML version''' ||<style="background-color: #E6EDFF;">||
|| 0.5 || 1022 || 2017-02-17 || 1.0.1 || [[attachment:quakepy-0.5.tgz|quakepy-0.5.tgz]] (gnuzipped tar, 1.1MB) ||
|| 0.4 || 256 || 2009-12-10 || 1.0.1 || [[attachment:quakepy-0.4.tgz|quakepy-0.4.tgz]] (gnuzipped tar, 1.1MB) ||
|| 0.3 || 204 || 2009-05-31 || 1.0.1 || [[attachment:quakepy-0.3.tgz|quakepy-0.3.tgz]] (gnuzipped tar, 1.1MB) ||
Line 15: Line 14:
You need to add the !QuakePy directory to your PYTHONPATH, using !QuakePy needs a couple of other packages to be installed. Please check out ListOfPackages to see which packages are required.

After downloading !QuakePy, you need to add the !QuakePy directory to your PYTHONPATH, using
Line 28: Line 29:

No further steps are required to install !QuakePy.

== Test ==

!QuakePy provides a test suite in order to ensure proper operation of the package. The tests can be run using the following commands:

{{{
cd /my/quakepy/installation
make check
make testclean
}}}

The tests will create temporary data on your drive. Please be sure to provide sufficient disk space. The command '''make testclean''' removes the files created by the test suite.
 

GettingQuakePy

The development of QuakePy supporting QuakeML version 1.0.1 is not being continued. Therefore, SVN access is not available any longer. Please download the latest archived version from the table below. There is an experimental version of QuakePy that supports QuakeML 1.2. It can be found at https://github.com/QuakePy/quakepy12.

Archive

Version

Revision

Release Date

QuakeML version

0.5

1022

2017-02-17

1.0.1

quakepy-0.5.tgz (gnuzipped tar, 1.1MB)

0.4

256

2009-12-10

1.0.1

quakepy-0.4.tgz (gnuzipped tar, 1.1MB)

0.3

204

2009-05-31

1.0.1

quakepy-0.3.tgz (gnuzipped tar, 1.1MB)

Installation

QuakePy needs a couple of other packages to be installed. Please check out ListOfPackages to see which packages are required.

After downloading QuakePy, you need to add the QuakePy directory to your PYTHONPATH, using

export PYTHONPATH=/my/quakepy/installation:$PYTHONPATH

for bash, or

setenv PYTHONPATH /my/quakepy/installation:$PYTHONPATH

for csh/tcsh.

No further steps are required to install QuakePy.

Test

QuakePy provides a test suite in order to ensure proper operation of the package. The tests can be run using the following commands:

cd /my/quakepy/installation
make check
make testclean

The tests will create temporary data on your drive. Please be sure to provide sufficient disk space. The command make testclean removes the files created by the test suite.