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

How to install unoconv via python pip




unoconv - Universal Office Converter - Office document conversion, it belongs to Classifiers:

- Environment :: Console
- Intended Audience :: System Administrators
- License :: OSI Approved :: GNU General Public License v2 (GPLv2)
- Topic :: Office/Business
- Topic :: Office/Business :: Office Suites
- Topic :: Utilities

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



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_unoconv_env

- Active the virtual environment

test_unoconv_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_unoconv_env

- Active the virtual environment

source test_unoconv_env/bin/active


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

To install unoconv on Windows(CMD):

py -m pip install unoconv

To install unoconv on Unix/macOs:

pip install unoconv


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

Example:

pip install unoconv==0.6


Please see the version list below table:

VersionReleased dateCommand
unoconv 0.9.02019-10-21T18:32:22Windows:

py -m pip install unoconv==0.9.0

Unix/macOs:

pip install unoconv==0.9.0

unoconv 0.8.22017-12-07T11:01:30Windows:

py -m pip install unoconv==0.8.2

Unix/macOs:

pip install unoconv==0.8.2

unoconv 0.62015-03-11T02:26:05Windows:

py -m pip install unoconv==0.6

Unix/macOs:

pip install unoconv==0.6


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_unoconv_downloaded_file>

On Unix/macOs:

pip install <path_to_unoconv_downloaded_file>


List distribution:


Project link:

- Homepage