-
Notifications
You must be signed in to change notification settings - Fork 0
Installation on Linux via Apt Repository
For installation add the ObsPy apt repository to your package manager by adding the following line to the file /etc/apt/sources.list
(needs root privileges):
ObsPy is packed for all Debian and Ubuntu releases which are still officially supported.
Replace CODENAME with the codename of your Debian/Ubuntu release.
deb http://deb.obspy.org CODENAME main
Currently supported releases are (see http://deb.obspy.org/pool/main/p/python-obspy/ for the most up-to-date list of current packages):
- Debian:
-
Ubuntu:
- precise (i386, amd64)
- trusty (i386, amd64)
- xenial (i386, amd64)
- Raspbian wheezy and jessie (hard-float, armv6l)
If you are unsure about the codename of your installation you can use the following command to display it:
lsb_release -cs
Next you need to import the ObsPy gnupg key so that apt is able to check the integrity of the downloaded packages. The following command needs to be executed only once:
wget --quiet -O - https://raw.github.com/obspy/obspy/master/misc/debian/public.key | sudo apt-key add -
To install ObsPy including all dependencies:
sudo apt-get update
# python3 package only available for newer Debian/Ubuntu releases
sudo apt-get install python-obspy python3-obspy
If you want to uninstall ObsPy and all unneeded dependencies just do:
sudo apt-get remove python-obspy python3-obspy
Starting with ObsPy 0.10.0 support for Python3 was introduced. For newer Debian (starting with "jessie") and Ubuntu (starting with "trusty") releases, python3-obspy
package will be available. Furthermore data and image files only needed to run ObsPy's test suites will be moved to a separate package python-obspy-dbg
which can be opted-out when installing with e.g. aptitude install -R python-obspy
.