Installation under Anaconda¶
Anaconda, is a cross-platform Python
distribution with its own package manager conda
. There are two versions:
Anaconda3 for Python 3 and Anaconda2 for Python 2. Pyrocko can be installed
under either of them.
Anaconda3 and 2 using conda
¶
As of Pyrocko 2017.11, pre-built packages are available for Linux 64-Bit and MacOS. You can use can use the conda
package manager to install Pyrocko framwork:
conda install -c pyrocko pyrocko
More information available at https://anaconda.org/pyrocko/pyrocko
Anaconda: update to latest Pyrocko version (master branch)¶
All dependencies should be resolved by a previous conda install. You can
then go ahead and use pip
to update Pyrocko from source
pip install git+https://git.pyrocko.org/pyrocko/pyrocko.git
Anaconda (compilation from source)¶
conda install pyqt=5
conda install progressbar
cd `conda info --root`
mkdir src
cd src
git clone https://git.pyrocko.org/pyrocko/pyrocko.git
cd pyrocko
python setup.py install
For instructions on how to install Pyrocko on other systems or if the installation with the above procedure fails, see Python package manager installations or Detailed installation instructions.