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

How to install tuir via python pip




tuir - A simple terminal viewer for Reddit (Terminal UI for Reddit), it belongs to Classifiers:

- Environment :: Console :: Curses
- Intended Audience :: End Users/Desktop
- Topic :: Internet :: WWW/HTTP :: Dynamic Content
- Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Message Boards
- Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary
- Topic :: Terminals

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



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_tuir_env

- Active the virtual environment

test_tuir_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_tuir_env

- Active the virtual environment

source test_tuir_env/bin/active


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

To install tuir on Windows(CMD):

py -m pip install tuir

To install tuir on Unix/macOs:

pip install tuir


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

Example:

pip install tuir==1.28.1


Please see the version list below table:

VersionReleased dateCommand
tuir 1.29.02020-04-26T07:55:45Windows:

py -m pip install tuir==1.29.0

Unix/macOs:

pip install tuir==1.29.0

tuir 1.28.32019-09-03T03:07:36Windows:

py -m pip install tuir==1.28.3

Unix/macOs:

pip install tuir==1.28.3

tuir 1.28.22019-06-13T02:22:16Windows:

py -m pip install tuir==1.28.2

Unix/macOs:

pip install tuir==1.28.2

tuir 1.28.12019-06-10T03:12:34Windows:

py -m pip install tuir==1.28.1

Unix/macOs:

pip install tuir==1.28.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_tuir_downloaded_file>

On Unix/macOs:

pip install <path_to_tuir_downloaded_file>


List distribution:


Project link:

- Homepage