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

How to install trufont via python pip




trufont - TruFont, a modular and cross-platform font editor., it belongs to Classifiers:

- Environment :: X11 Applications
- Environment :: X11 Applications :: Qt
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX :: Linux
- Topic :: Multimedia
- Topic :: Multimedia :: Graphics
- Topic :: Multimedia :: Graphics :: Editors
- Topic :: Multimedia :: Graphics :: Editors :: Vector-Based
- Topic :: Text Processing
- Topic :: Text Processing :: Fonts

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



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_trufont_env

- Active the virtual environment

test_trufont_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_trufont_env

- Active the virtual environment

source test_trufont_env/bin/active


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

To install trufont on Windows(CMD):

py -m pip install trufont

To install trufont on Unix/macOs:

pip install trufont


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

Example:

pip install trufont==0.5.1.dev0                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
trufont 0.6.62020-09-27T21:40:27Windows:

py -m pip install trufont==0.6.6

Unix/macOs:

pip install trufont==0.6.6

trufont 0.6.52020-05-12T19:21:06Windows:

py -m pip install trufont==0.6.5

Unix/macOs:

pip install trufont==0.6.5

trufont 0.6.42020-04-11T21:56:55Windows:

py -m pip install trufont==0.6.4

Unix/macOs:

pip install trufont==0.6.4

trufont 0.6.32019-11-22T20:54:29Windows:

py -m pip install trufont==0.6.3

Unix/macOs:

pip install trufont==0.6.3

trufont 0.6.22019-10-18T19:58:44Windows:

py -m pip install trufont==0.6.2

Unix/macOs:

pip install trufont==0.6.2

trufont 0.6.12019-10-16T22:07:10Windows:

py -m pip install trufont==0.6.1

Unix/macOs:

pip install trufont==0.6.1

trufont 0.6.0.post32019-09-09T09:49:12Windows:

py -m pip install trufont==0.6.0.post3

Unix/macOs:

pip install trufont==0.6.0.post3

trufont 0.6.0.post22019-09-09T09:42:18Windows:

py -m pip install trufont==0.6.0.post2

Unix/macOs:

pip install trufont==0.6.0.post2


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

Download the distribution file from trufont-0.6.6.zip or the specific trufont version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_trufont_downloaded_file>

On Unix/macOs:

pip install <path_to_trufont_downloaded_file>


List distribution:


Project link:

- Homepage