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

How to install PoTrans via python pip




PoTrans - gettext PO files translate by Yandex translator, it belongs to Classifiers:

- Topic :: Software Development :: Localization

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



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_PoTrans_env

- Active the virtual environment

test_PoTrans_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_PoTrans_env

- Active the virtual environment

source test_PoTrans_env/bin/active


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

To install PoTrans on Windows(CMD):

py -m pip install PoTrans

To install PoTrans on Unix/macOs:

pip install PoTrans


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

Example:

pip install PoTrans==0.1.0


Please see the version list below table:

VersionReleased dateCommand
PoTrans 0.1.72017-07-23T16:29:56Windows:

py -m pip install PoTrans==0.1.7

Unix/macOs:

pip install PoTrans==0.1.7

PoTrans 0.1.62016-08-16T07:54:12Windows:

py -m pip install PoTrans==0.1.6

Unix/macOs:

pip install PoTrans==0.1.6

PoTrans 0.1.52016-08-14T06:17:07Windows:

py -m pip install PoTrans==0.1.5

Unix/macOs:

pip install PoTrans==0.1.5

PoTrans 0.1.42016-08-12T05:15:37Windows:

py -m pip install PoTrans==0.1.4

Unix/macOs:

pip install PoTrans==0.1.4

PoTrans 0.1.32016-08-09T19:47:06Windows:

py -m pip install PoTrans==0.1.3

Unix/macOs:

pip install PoTrans==0.1.3

PoTrans 0.1.22016-08-09T19:40:35Windows:

py -m pip install PoTrans==0.1.2

Unix/macOs:

pip install PoTrans==0.1.2

PoTrans 0.1.12016-08-09T19:25:44Windows:

py -m pip install PoTrans==0.1.1

Unix/macOs:

pip install PoTrans==0.1.1

PoTrans 0.1.02016-08-09T19:05:12Windows:

py -m pip install PoTrans==0.1.0

Unix/macOs:

pip install PoTrans==0.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_PoTrans_downloaded_file>

On Unix/macOs:

pip install <path_to_PoTrans_downloaded_file>


List distribution:


Project link:

- Homepage