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

How to install PyExcelerate via python pip




PyExcelerate - Accelerated Excel XLSX Writing Library for Python 2/3, it belongs to Classifiers:

- License :: OSI Approved :: BSD License
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3.4
- Programming Language :: Python :: 3.5

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



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_PyExcelerate_env

- Active the virtual environment

test_PyExcelerate_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_PyExcelerate_env

- Active the virtual environment

source test_PyExcelerate_env/bin/active


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

To install PyExcelerate on Windows(CMD):

py -m pip install PyExcelerate

To install PyExcelerate on Unix/macOs:

pip install PyExcelerate


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

Example:

pip install PyExcelerate==0.6.7


Please see the version list below table:

VersionReleased dateCommand
PyExcelerate 0.10.02020-11-26T04:07:10Windows:

py -m pip install PyExcelerate==0.10.0

Unix/macOs:

pip install PyExcelerate==0.10.0

PyExcelerate 0.9.02020-04-05T03:23:47Windows:

py -m pip install PyExcelerate==0.9.0

Unix/macOs:

pip install PyExcelerate==0.9.0

PyExcelerate 0.8.02019-05-04T16:31:59Windows:

py -m pip install PyExcelerate==0.8.0

Unix/macOs:

pip install PyExcelerate==0.8.0

PyExcelerate 0.7.32018-06-05T21:55:28Windows:

py -m pip install PyExcelerate==0.7.3

Unix/macOs:

pip install PyExcelerate==0.7.3

PyExcelerate 0.7.22017-11-15T19:57:15Windows:

py -m pip install PyExcelerate==0.7.2

Unix/macOs:

pip install PyExcelerate==0.7.2

PyExcelerate 0.7.12016-08-05T21:53:21Windows:

py -m pip install PyExcelerate==0.7.1

Unix/macOs:

pip install PyExcelerate==0.7.1

PyExcelerate 0.7.02016-07-28T17:55:30Windows:

py -m pip install PyExcelerate==0.7.0

Unix/macOs:

pip install PyExcelerate==0.7.0

PyExcelerate 0.6.72015-04-07T20:54:27Windows:

py -m pip install PyExcelerate==0.6.7

Unix/macOs:

pip install PyExcelerate==0.6.7


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_PyExcelerate_downloaded_file>

On Unix/macOs:

pip install <path_to_PyExcelerate_downloaded_file>


List distribution:


Project link:

- Homepage