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

How to install whisper via python pip




whisper - Fixed size round-robin style database, it belongs to Classifiers:

- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3.5
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: CPython
- Programming Language :: Python :: Implementation :: PyPy

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



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_whisper_env

- Active the virtual environment

test_whisper_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_whisper_env

- Active the virtual environment

source test_whisper_env/bin/active


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

To install whisper on Windows(CMD):

py -m pip install whisper

To install whisper on Unix/macOs:

pip install whisper


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

Example:

pip install whisper==0.9.5


Please see the version list below table:

VersionReleased dateCommand
whisper 1.1.102022-05-22T18:19:54Windows:

py -m pip install whisper==1.1.10

Unix/macOs:

pip install whisper==1.1.10

whisper 1.1.92022-05-22T17:34:19Windows:

py -m pip install whisper==1.1.9

Unix/macOs:

pip install whisper==1.1.9

whisper 1.1.82021-04-19T10:24:07Windows:

py -m pip install whisper==1.1.8

Unix/macOs:

pip install whisper==1.1.8

whisper 1.1.72020-03-16T16:14:30Windows:

py -m pip install whisper==1.1.7

Unix/macOs:

pip install whisper==1.1.7

whisper 1.1.62019-10-25T11:47:11Windows:

py -m pip install whisper==1.1.6

Unix/macOs:

pip install whisper==1.1.6

whisper 1.1.52018-12-23T19:32:54Windows:

py -m pip install whisper==1.1.5

Unix/macOs:

pip install whisper==1.1.5

whisper 1.1.42018-09-03T22:52:08Windows:

py -m pip install whisper==1.1.4

Unix/macOs:

pip install whisper==1.1.4

whisper 1.1.32018-04-04T08:48:04Windows:

py -m pip install whisper==1.1.3

Unix/macOs:

pip install whisper==1.1.3

whisper 1.1.22018-02-13T12:03:15Windows:

py -m pip install whisper==1.1.2

Unix/macOs:

pip install whisper==1.1.2

whisper 1.1.12017-12-19T13:21:05Windows:

py -m pip install whisper==1.1.1

Unix/macOs:

pip install whisper==1.1.1

whisper 1.1.02017-12-19T11:21:20Windows:

py -m pip install whisper==1.1.0

Unix/macOs:

pip install whisper==1.1.0

whisper 1.0.22017-07-11T22:09:02Windows:

py -m pip install whisper==1.0.2

Unix/macOs:

pip install whisper==1.0.2

whisper 1.0.12017-04-23T17:15:56Windows:

py -m pip install whisper==1.0.1

Unix/macOs:

pip install whisper==1.0.1

whisper 1.0.02017-04-11T21:53:14Windows:

py -m pip install whisper==1.0.0

Unix/macOs:

pip install whisper==1.0.0

whisper 0.9.162017-04-11T21:49:15Windows:

py -m pip install whisper==0.9.16

Unix/macOs:

pip install whisper==0.9.16

whisper 0.9.152015-11-27T19:25:01Windows:

py -m pip install whisper==0.9.15

Unix/macOs:

pip install whisper==0.9.15

whisper 0.9.142015-11-07T06:05:22Windows:

py -m pip install whisper==0.9.14

Unix/macOs:

pip install whisper==0.9.14

whisper 0.9.132014-12-31T17:53:52Windows:

py -m pip install whisper==0.9.13

Unix/macOs:

pip install whisper==0.9.13

whisper 0.9.122013-08-21T16:57:06Windows:

py -m pip install whisper==0.9.12

Unix/macOs:

pip install whisper==0.9.12

whisper 0.9.112013-08-20T20:27:54Windows:

py -m pip install whisper==0.9.11

Unix/macOs:

pip install whisper==0.9.11

whisper 0.9.102012-05-31T20:45:55Windows:

py -m pip install whisper==0.9.10

Unix/macOs:

pip install whisper==0.9.10

whisper 0.9.92011-10-06T09:31:25Windows:

py -m pip install whisper==0.9.9

Unix/macOs:

pip install whisper==0.9.9

whisper 0.9.82011-04-04T02:38:19Windows:

py -m pip install whisper==0.9.8

Unix/macOs:

pip install whisper==0.9.8

whisper 0.9.72011-01-08T07:17:43Windows:

py -m pip install whisper==0.9.7

Unix/macOs:

pip install whisper==0.9.7

whisper 0.9.62010-02-26T19:56:34Windows:

py -m pip install whisper==0.9.6

Unix/macOs:

pip install whisper==0.9.6

whisper 0.9.52009-12-31T02:55:57Windows:

py -m pip install whisper==0.9.5

Unix/macOs:

pip install whisper==0.9.5


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_whisper_downloaded_file>

On Unix/macOs:

pip install <path_to_whisper_downloaded_file>


List distribution:


Project link:

- Homepage