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

How to install ufo-extractor via python pip




ufo-extractor - Tools for extracting data from font binaries into UFO objects., it belongs to Classifiers:

- Environment :: Other Environment
- Topic :: Multimedia
- Topic :: Multimedia :: Graphics
- Topic :: Multimedia :: Graphics :: Editors
- Topic :: Multimedia :: Graphics :: Editors :: Vector-Based
- Topic :: Multimedia :: Graphics :: Graphics Conversion
- Topic :: Text Processing
- Topic :: Text Processing :: Fonts

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



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_ufo-extractor_env

- Active the virtual environment

test_ufo-extractor_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_ufo-extractor_env

- Active the virtual environment

source test_ufo-extractor_env/bin/active


Step 2: OK, now, let flow below content to start the installation ufo-extractor

To install ufo-extractor on Windows(CMD):

py -m pip install ufo-extractor

To install ufo-extractor on Unix/macOs:

pip install ufo-extractor


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

Example:

pip install ufo-extractor==0.2.0.dev1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
ufo-extractor 0.5.02021-12-28T17:30:53Windows:

py -m pip install ufo-extractor==0.5.0

Unix/macOs:

pip install ufo-extractor==0.5.0

ufo-extractor 0.4.22021-12-03T17:50:07Windows:

py -m pip install ufo-extractor==0.4.2

Unix/macOs:

pip install ufo-extractor==0.4.2

ufo-extractor 0.3.02019-11-19T11:14:28Windows:

py -m pip install ufo-extractor==0.3.0

Unix/macOs:

pip install ufo-extractor==0.3.0

ufo-extractor 0.2.02016-12-19T18:38:36Windows:

py -m pip install ufo-extractor==0.2.0

Unix/macOs:

pip install ufo-extractor==0.2.0


Step 4: Otherwise, you can install ufo-extractor from local archives:

Download the distribution file from ufo_extractor-0.5.0.zip or the specific ufo-extractor version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_ufo-extractor_downloaded_file>

On Unix/macOs:

pip install <path_to_ufo-extractor_downloaded_file>


List distribution:


Project link:

- Homepage