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

How to install parfive via python pip




parfive - A HTTP and FTP parallel file downloader., it belongs to Classifiers:

- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.7
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: 3.10

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



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_parfive_env

- Active the virtual environment

test_parfive_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_parfive_env

- Active the virtual environment

source test_parfive_env/bin/active


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

To install parfive on Windows(CMD):

py -m pip install parfive

To install parfive on Unix/macOs:

pip install parfive


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

Example:

pip install parfive==0.1.0


Please see the version list below table:

VersionReleased dateCommand
parfive 2.0.12022-07-14T15:32:44Windows:

py -m pip install parfive==2.0.1

Unix/macOs:

pip install parfive==2.0.1

parfive 2.0.02022-07-13T15:03:24Windows:

py -m pip install parfive==2.0.0

Unix/macOs:

pip install parfive==2.0.0

parfive 1.5.12022-01-05T11:32:19Windows:

py -m pip install parfive==1.5.1

Unix/macOs:

pip install parfive==1.5.1

parfive 1.5.02021-09-24T10:18:55Windows:

py -m pip install parfive==1.5.0

Unix/macOs:

pip install parfive==1.5.0

parfive 1.4.02021-08-31T20:26:15Windows:

py -m pip install parfive==1.4.0

Unix/macOs:

pip install parfive==1.4.0

parfive 1.3.02021-04-08T10:24:09Windows:

py -m pip install parfive==1.3.0

Unix/macOs:

pip install parfive==1.3.0

parfive 1.2.02020-10-01T16:03:43Windows:

py -m pip install parfive==1.2.0

Unix/macOs:

pip install parfive==1.2.0

parfive 1.1.12020-08-17T10:16:15Windows:

py -m pip install parfive==1.1.1

Unix/macOs:

pip install parfive==1.1.1

parfive 1.1.0 yanked2020-05-01T17:02:19Windows:

py -m pip install parfive==1.1.0                                                                          yanked

Unix/macOs:

pip install parfive==1.1.0                                                                          yanked

parfive 1.0.22020-04-15T15:52:06Windows:

py -m pip install parfive==1.0.2

Unix/macOs:

pip install parfive==1.0.2

parfive 1.0.12020-04-02T11:39:28Windows:

py -m pip install parfive==1.0.1

Unix/macOs:

pip install parfive==1.0.1

parfive 1.0.02019-05-01T11:12:21Windows:

py -m pip install parfive==1.0.0

Unix/macOs:

pip install parfive==1.0.0

parfive 0.2.42019-04-01T11:57:10Windows:

py -m pip install parfive==0.2.4

Unix/macOs:

pip install parfive==0.2.4

parfive 0.2.32019-03-21T14:37:41Windows:

py -m pip install parfive==0.2.3

Unix/macOs:

pip install parfive==0.2.3

parfive 0.2.22019-03-20T12:53:17Windows:

py -m pip install parfive==0.2.2

Unix/macOs:

pip install parfive==0.2.2

parfive 0.2.12019-03-15T18:11:17Windows:

py -m pip install parfive==0.2.1

Unix/macOs:

pip install parfive==0.2.1

parfive 0.22019-03-12T21:27:33Windows:

py -m pip install parfive==0.2

Unix/macOs:

pip install parfive==0.2

parfive 0.1.12018-06-18T11:40:59Windows:

py -m pip install parfive==0.1.1

Unix/macOs:

pip install parfive==0.1.1

parfive 0.1.02018-06-18T11:35:28Windows:

py -m pip install parfive==0.1.0

Unix/macOs:

pip install parfive==0.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_parfive_downloaded_file>

On Unix/macOs:

pip install <path_to_parfive_downloaded_file>


List distribution:


Project link:

- Homepage