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

How to install PyTTY via python pip




PyTTY - Python serial access package, it belongs to Classifiers:

- License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
- Operating System :: POSIX
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.2
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: CPython
- Topic :: Communications
- Topic :: Terminals
- Topic :: Terminals :: Serial

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



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_PyTTY_env

- Active the virtual environment

test_PyTTY_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_PyTTY_env

- Active the virtual environment

source test_PyTTY_env/bin/active


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

To install PyTTY on Windows(CMD):

py -m pip install PyTTY

To install PyTTY on Unix/macOs:

pip install PyTTY


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

Example:

pip install PyTTY==0.1


Please see the version list below table:

VersionReleased dateCommand
PyTTY 0.42012-07-20T22:30:35Windows:

py -m pip install PyTTY==0.4

Unix/macOs:

pip install PyTTY==0.4

PyTTY 0.32011-12-13T22:32:49Windows:

py -m pip install PyTTY==0.3

Unix/macOs:

pip install PyTTY==0.3

PyTTY 0.22010-11-10T19:43:01Windows:

py -m pip install PyTTY==0.2

Unix/macOs:

pip install PyTTY==0.2

PyTTY 0.12010-11-05T06:16:16Windows:

py -m pip install PyTTY==0.1

Unix/macOs:

pip install PyTTY==0.1


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

Download the distribution file from PyTTY-0.4.tar.bz2 or the specific PyTTY version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_PyTTY_downloaded_file>

On Unix/macOs:

pip install <path_to_PyTTY_downloaded_file>


List distribution:


Project link:

- Homepage
- Download