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

How to install peekingduck via python pip




peekingduck - A modular framework built to simplify Computer Vision inference workloads., it belongs to Classifiers:

- Topic :: Scientific/Engineering :: Artificial Intelligence

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



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_peekingduck_env

- Active the virtual environment

test_peekingduck_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_peekingduck_env

- Active the virtual environment

source test_peekingduck_env/bin/active


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

To install peekingduck on Windows(CMD):

py -m pip install peekingduck

To install peekingduck on Unix/macOs:

pip install peekingduck


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

Example:

pip install peekingduck==0.1.1b3                                                        pre-release                                      yanked


Please see the version list below table:

VersionReleased dateCommand
peekingduck 1.3.0.post12022-08-22T08:32:02Windows:

py -m pip install peekingduck==1.3.0.post1

Unix/macOs:

pip install peekingduck==1.3.0.post1

peekingduck 1.3.02022-08-18T09:26:19Windows:

py -m pip install peekingduck==1.3.0

Unix/macOs:

pip install peekingduck==1.3.0

peekingduck 1.2.32022-08-16T09:13:40Windows:

py -m pip install peekingduck==1.2.3

Unix/macOs:

pip install peekingduck==1.2.3

peekingduck 1.2.22022-08-15T07:51:07Windows:

py -m pip install peekingduck==1.2.2

Unix/macOs:

pip install peekingduck==1.2.2

peekingduck 1.2.12022-05-31T02:17:53Windows:

py -m pip install peekingduck==1.2.1

Unix/macOs:

pip install peekingduck==1.2.1

peekingduck 1.2.02022-03-29T01:27:44Windows:

py -m pip install peekingduck==1.2.0

Unix/macOs:

pip install peekingduck==1.2.0

peekingduck 1.1.12021-11-29T01:36:31Windows:

py -m pip install peekingduck==1.1.1

Unix/macOs:

pip install peekingduck==1.1.1

peekingduck 1.1.02021-10-26T09:21:47Windows:

py -m pip install peekingduck==1.1.0

Unix/macOs:

pip install peekingduck==1.1.0

peekingduck 1.0.32021-10-14T09:48:48Windows:

py -m pip install peekingduck==1.0.3

Unix/macOs:

pip install peekingduck==1.0.3

peekingduck 1.0.22021-08-24T03:41:18Windows:

py -m pip install peekingduck==1.0.2

Unix/macOs:

pip install peekingduck==1.0.2

peekingduck 1.0.12021-08-17T08:02:26Windows:

py -m pip install peekingduck==1.0.1

Unix/macOs:

pip install peekingduck==1.0.1

peekingduck 1.0.02021-08-12T05:07:11Windows:

py -m pip install peekingduck==1.0.0

Unix/macOs:

pip install peekingduck==1.0.0

peekingduck 0.4.02021-08-03T09:18:55Windows:

py -m pip install peekingduck==0.4.0

Unix/macOs:

pip install peekingduck==0.4.0

peekingduck 0.3.12021-07-19T09:48:34Windows:

py -m pip install peekingduck==0.3.1

Unix/macOs:

pip install peekingduck==0.3.1

peekingduck 0.3.02021-07-12T08:11:49Windows:

py -m pip install peekingduck==0.3.0

Unix/macOs:

pip install peekingduck==0.3.0

peekingduck 0.2.32021-06-03T12:51:34Windows:

py -m pip install peekingduck==0.2.3

Unix/macOs:

pip install peekingduck==0.2.3

peekingduck 0.2.22021-06-03T10:34:40Windows:

py -m pip install peekingduck==0.2.2

Unix/macOs:

pip install peekingduck==0.2.2

peekingduck 0.2.02021-06-03T09:07:23Windows:

py -m pip install peekingduck==0.2.0

Unix/macOs:

pip install peekingduck==0.2.0

peekingduck 0.1.2 yanked2021-04-30T07:35:45Windows:

py -m pip install peekingduck==0.1.2                                                                          yanked

Unix/macOs:

pip install peekingduck==0.1.2                                                                          yanked


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

Download the distribution file from peekingduck-1.3.0.post1.tar.gz or the specific peekingduck version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_peekingduck_downloaded_file>

On Unix/macOs:

pip install <path_to_peekingduck_downloaded_file>


List distribution:


Project link:

- Homepage