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

How to install xlutils via python pip




xlutils - Utilities for working with Excel files that require both xlrd and xlwt, it belongs to Classifiers:

- Development Status :: 6 - Mature
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 3.3
- Topic :: Office/Business
- Topic :: Office/Business :: Financial
- Topic :: Office/Business :: Financial :: Spreadsheet

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



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_xlutils_env

- Active the virtual environment

test_xlutils_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_xlutils_env

- Active the virtual environment

source test_xlutils_env/bin/active


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

To install xlutils on Windows(CMD):

py -m pip install xlutils

To install xlutils on Unix/macOs:

pip install xlutils


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

Example:

pip install xlutils==1.0.0


Please see the version list below table:

VersionReleased dateCommand
xlutils 2.0.02016-06-09T05:27:46Windows:

py -m pip install xlutils==2.0.0

Unix/macOs:

pip install xlutils==2.0.0

xlutils 1.7.12014-04-25T18:47:24Windows:

py -m pip install xlutils==1.7.1

Unix/macOs:

pip install xlutils==1.7.1

xlutils 1.7.02013-10-29T23:17:44Windows:

py -m pip install xlutils==1.7.0

Unix/macOs:

pip install xlutils==1.7.0

xlutils 1.6.02013-04-05T15:38:24Windows:

py -m pip install xlutils==1.6.0

Unix/macOs:

pip install xlutils==1.6.0

xlutils 1.5.22012-04-13T16:31:34Windows:

py -m pip install xlutils==1.5.2

Unix/macOs:

pip install xlutils==1.5.2

xlutils 1.5.12012-03-05T21:54:39Windows:

py -m pip install xlutils==1.5.1

Unix/macOs:

pip install xlutils==1.5.1

xlutils 1.5.02012-03-05T08:16:32Windows:

py -m pip install xlutils==1.5.0

Unix/macOs:

pip install xlutils==1.5.0

xlutils 1.4.12009-09-06T22:24:45Windows:

py -m pip install xlutils==1.4.1

Unix/macOs:

pip install xlutils==1.4.1

xlutils 1.4.02009-08-18T17:28:04Windows:

py -m pip install xlutils==1.4.0

Unix/macOs:

pip install xlutils==1.4.0

xlutils 1.3.22009-06-18T15:29:24Windows:

py -m pip install xlutils==1.3.2

Unix/macOs:

pip install xlutils==1.3.2

xlutils 1.3.12009-05-21T23:52:44Windows:

py -m pip install xlutils==1.3.1

Unix/macOs:

pip install xlutils==1.3.1

xlutils 1.3.02009-03-18T12:49:49Windows:

py -m pip install xlutils==1.3.0

Unix/macOs:

pip install xlutils==1.3.0

xlutils 1.2.12008-12-19T17:32:47Windows:

py -m pip install xlutils==1.2.1

Unix/macOs:

pip install xlutils==1.2.1

xlutils 1.2.02008-12-10T16:11:12Windows:

py -m pip install xlutils==1.2.0

Unix/macOs:

pip install xlutils==1.2.0

xlutils 1.1.12008-11-20T12:45:35Windows:

py -m pip install xlutils==1.1.1

Unix/macOs:

pip install xlutils==1.1.1

xlutils 1.1.02008-11-14T11:38:34Windows:

py -m pip install xlutils==1.1.0

Unix/macOs:

pip install xlutils==1.1.0

xlutils 1.0.02008-11-08T12:45:38Windows:

py -m pip install xlutils==1.0.0

Unix/macOs:

pip install xlutils==1.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_xlutils_downloaded_file>

On Unix/macOs:

pip install <path_to_xlutils_downloaded_file>


List distribution:


Project link:

- Homepage