Top Menu

Jump to content
  • wradlib
    • View all projects
Home
    • Work packages
    • News
    • Getting started
    • Introduction video
    • Welcome to OpenProject

      Get an overview

      Get a quick overview of project management and team collaboration with OpenProject.
      You can restart this video from the help menu

    • Help and support
    • Upgrade to Enterprise Edition
    • User guides
    • Videos
    • Shortcuts
    • Community forum
    • Professional support

    • Additional resources
    • Data privacy and security policy
    • OpenProject website
    • Security alerts / Newsletter
    • OpenProject blog
    • Release notes
    • Report a bug
    • Development roadmap
    • Add and edit translations
    • API documentation
  • Sign in
      Forgot your password?

Side Menu

  • Overview
  • Activity
  • Work packages
  • News
  • Repository
  • You are here:Wiki
    • Table of contents
      • Hierarchy leafwiki
You are here:
  • Wiki

Content

wiki

  • More
    • Table of contents

Setup Python and Dependencies

To run wradlib you need a Python interpreter, the wradlib-package and it’s dependencies.

Setup Python

For linux and macOSX `bash`-shell is mandatory. For windows please refer to the available conda-documentation.

  • Install miniconda for your operating system. Be sure to use an installation path on your local machine and not a network-folder.
    Choose for example /usr/local/conda or /home/conda (may root permissions needed for the folder creation)
  • Add conda-forge to your conda channels
$ conda config --add channels conda-forge 
  • Create a new conda environment with recent python version
$ conda create -n wradlib python=3.6

Install wradlib and dependencies

  • Activate your new environment and install the other dependencies.
$ source activate wradlib
(wradlib) $ conda install wradlib numpy

With this procedure you should get a working wradlib conda-environment on your computer.

Loading...