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

How to install pooch via python pip




pooch - "Pooch manages your Python library's sample data files: it automatically downloads and stores them in a local directory, with support for versioning and corruption checks.", it belongs to Classifiers:

- Intended Audience :: Education
- Programming Language :: Python :: 3 :: Only

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



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_pooch_env

- Active the virtual environment

test_pooch_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_pooch_env

- Active the virtual environment

source test_pooch_env/bin/active


Step 2: OK, now, let flow below content to start the installation pooch

To install pooch on Windows(CMD):

py -m pip install pooch

To install pooch on Unix/macOs:

pip install pooch


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

Example:

pip install pooch==0.1a1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
pooch 1.6.02022-01-24T09:57:17Windows:

py -m pip install pooch==1.6.0

Unix/macOs:

pip install pooch==1.6.0

pooch 1.5.22021-10-11T09:04:00Windows:

py -m pip install pooch==1.5.2

Unix/macOs:

pip install pooch==1.5.2

pooch 1.5.12021-08-24T12:45:51Windows:

py -m pip install pooch==1.5.1

Unix/macOs:

pip install pooch==1.5.1

pooch 1.5.02021-08-23T09:46:01Windows:

py -m pip install pooch==1.5.0

Unix/macOs:

pip install pooch==1.5.0

pooch 1.4.02021-06-08T22:09:12Windows:

py -m pip install pooch==1.4.0

Unix/macOs:

pip install pooch==1.4.0

pooch 1.3.02020-11-27T07:45:29Windows:

py -m pip install pooch==1.3.0

Unix/macOs:

pip install pooch==1.3.0

pooch 1.2.02020-09-10T11:52:42Windows:

py -m pip install pooch==1.2.0

Unix/macOs:

pip install pooch==1.2.0

pooch 1.1.12020-05-14T10:35:51Windows:

py -m pip install pooch==1.1.1

Unix/macOs:

pip install pooch==1.1.1

pooch 1.1.02020-04-13T17:59:08Windows:

py -m pip install pooch==1.1.0

Unix/macOs:

pip install pooch==1.1.0

pooch 1.0.02020-01-28T15:00:15Windows:

py -m pip install pooch==1.0.0

Unix/macOs:

pip install pooch==1.0.0

pooch 0.7.22020-01-17T16:42:05Windows:

py -m pip install pooch==0.7.2

Unix/macOs:

pip install pooch==0.7.2

pooch 0.7.12020-01-17T16:12:27Windows:

py -m pip install pooch==0.7.1

Unix/macOs:

pip install pooch==0.7.1

pooch 0.7.02019-11-20T10:51:57Windows:

py -m pip install pooch==0.7.0

Unix/macOs:

pip install pooch==0.7.0

pooch 0.6.02019-10-22T09:02:08Windows:

py -m pip install pooch==0.6.0

Unix/macOs:

pip install pooch==0.6.0

pooch 0.5.22019-06-25T02:39:31Windows:

py -m pip install pooch==0.5.2

Unix/macOs:

pip install pooch==0.5.2

pooch 0.5.12019-05-22T02:39:39Windows:

py -m pip install pooch==0.5.1

Unix/macOs:

pip install pooch==0.5.1

pooch 0.5.02019-05-21T04:14:12Windows:

py -m pip install pooch==0.5.0

Unix/macOs:

pip install pooch==0.5.0

pooch 0.4.02019-05-02T02:20:06Windows:

py -m pip install pooch==0.4.0

Unix/macOs:

pip install pooch==0.4.0

pooch 0.3.12019-03-29T04:53:04Windows:

py -m pip install pooch==0.3.1

Unix/macOs:

pip install pooch==0.3.1

pooch 0.3.02019-03-28T03:00:42Windows:

py -m pip install pooch==0.3.0

Unix/macOs:

pip install pooch==0.3.0

pooch 0.2.12018-11-15T20:57:36Windows:

py -m pip install pooch==0.2.1

Unix/macOs:

pip install pooch==0.2.1

pooch 0.2.02018-11-01T01:55:16Windows:

py -m pip install pooch==0.2.0

Unix/macOs:

pip install pooch==0.2.0

pooch 0.1.12018-08-30T22:49:10Windows:

py -m pip install pooch==0.1.1

Unix/macOs:

pip install pooch==0.1.1

pooch 0.12018-08-21T02:33:46Windows:

py -m pip install pooch==0.1

Unix/macOs:

pip install pooch==0.1


Step 4: Otherwise, you can install pooch from local archives:

Download the distribution file from pooch-1.6.0.tar.gz or the specific pooch version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pooch_downloaded_file>

On Unix/macOs:

pip install <path_to_pooch_downloaded_file>


List distribution:


Project link:

- Homepage
- Bug Tracker
- Documentation
- Release Notes
- Source Code