Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install wrf-python via python pip




wrf-python - Diagnostic and interpolation routines for WRF-ARW data., it belongs to Classifiers:

- Operating System :: MacOS
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: Unix
- Programming Language :: Fortran
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Atmospheric Science

When you know about this project and you want to new install wrf-python to support your project or you get trouble as ModuleNotFoundError: No module named "wrf-python" or ImportError: cannot import name "wrf-python" in your project, let follow this tutorial to install wrf-python



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_wrf-python_env

- Active the virtual environment

test_wrf-python_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_wrf-python_env

- Active the virtual environment

source test_wrf-python_env/bin/active


Step 2: OK, now, let flow below content to start the installation wrf-python

To install wrf-python on Windows(CMD):

py -m pip install wrf-python

To install wrf-python on Unix/macOs:

pip install wrf-python


Step 3: If you want to install a specific wrf-python version, add ==<wrf-python version> to the end command line

Example:

pip install wrf-python==1.0a3                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
wrf-python 1.3.4.12022-05-26T17:19:42Windows:

py -m pip install wrf-python==1.3.4.1

Unix/macOs:

pip install wrf-python==1.3.4.1

wrf-python 1.3.42022-05-26T17:00:28Windows:

py -m pip install wrf-python==1.3.4

Unix/macOs:

pip install wrf-python==1.3.4

wrf-python 1.3.12019-01-18T18:13:28Windows:

py -m pip install wrf-python==1.3.1

Unix/macOs:

pip install wrf-python==1.3.1

wrf-python 1.3.02018-12-21T22:16:17Windows:

py -m pip install wrf-python==1.3.0

Unix/macOs:

pip install wrf-python==1.3.0

wrf-python 1.2.02018-06-07T22:28:31Windows:

py -m pip install wrf-python==1.2.0

Unix/macOs:

pip install wrf-python==1.2.0

wrf-python 1.1.32018-04-10T22:21:27Windows:

py -m pip install wrf-python==1.1.3

Unix/macOs:

pip install wrf-python==1.1.3

wrf-python 1.1.22018-04-10T22:21:25Windows:

py -m pip install wrf-python==1.1.2

Unix/macOs:

pip install wrf-python==1.1.2

wrf-python 1.1.12018-04-10T22:21:24Windows:

py -m pip install wrf-python==1.1.1

Unix/macOs:

pip install wrf-python==1.1.1

wrf-python 1.1.02018-01-29T17:26:57Windows:

py -m pip install wrf-python==1.1.0

Unix/macOs:

pip install wrf-python==1.1.0

wrf-python 1.0.52017-10-10T21:26:50Windows:

py -m pip install wrf-python==1.0.5

Unix/macOs:

pip install wrf-python==1.0.5

wrf-python 1.0.32017-06-14T21:55:54Windows:

py -m pip install wrf-python==1.0.3

Unix/macOs:

pip install wrf-python==1.0.3

wrf-python 1.0.22017-05-31T21:51:21Windows:

py -m pip install wrf-python==1.0.2

Unix/macOs:

pip install wrf-python==1.0.2

wrf-python 1.0.12017-03-27T21:18:43Windows:

py -m pip install wrf-python==1.0.1

Unix/macOs:

pip install wrf-python==1.0.1

wrf-python 1.0.02017-03-24T21:34:54Windows:

py -m pip install wrf-python==1.0.0

Unix/macOs:

pip install wrf-python==1.0.0


Step 4: Otherwise, you can install wrf-python from local archives:

Download the distribution file from wrf-python-1.3.4.1.tar.gz or the specific wrf-python version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_wrf-python_downloaded_file>

On Unix/macOs:

pip install <path_to_wrf-python_downloaded_file>


List distribution:


Project link:

- Homepage
- Download