Repository of examples showing off the use of Python for meteorology.
Last updated Feb 14, 2026
91
Stars
31
Forks
3
Issues
0
Stars/day
Attention Score
15
Language breakdown
No language data available.
โธ Files
click to expand
README
Unidata Python Gallery
THIS REPOSITORY IS NO LONGER MAINTAINED It has been replaced by Unidata's Python Training repository.
This is a collection of examples published in the Unidata blogs or just contributed. In addition to viewing them on the blog you can view them rendered at the web gallery, where you can also download the examples as Jupyter notebooks.
Installation Instructions
The current list of dependencies for this collection is:
The easiest way to install these libraries is with conda. (Determine if your OS 32 or 64 bit)- Once Miniconda is installed, from the command line (e.g., OS X terminal,
git clone https://github.com/Unidata/python-gallery
cd python-gallery
conda env create -f environment.yml
From a Unix command line (e.g., OS X terminal)
If your default shell is NOT bash, first typebash.
To activate or switch to a conda environment, you can conda activate
<environment>. For example,
conda activate gallery
To switch and/or deactivate environments:
conda deactivate
conda activate <environment>
From a Windows command line (e.g., cmd.exe)
To activate or switch to a conda environment, you can activate <environment>. For example,
activate gallery
To switch and/or deactivate environments:
deactivate
activate <environment>๐ More in this category