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

How to install Retro via python pip




Retro - Lightweight Declarative Web Toolkit, it belongs to Classifiers:

- Environment :: Web Environment
- Intended Audience :: Information Technology
- License :: OSI Approved :: BSD License
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Topic :: Internet
- Topic :: Internet :: WWW/HTTP

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



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_Retro_env

- Active the virtual environment

test_Retro_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_Retro_env

- Active the virtual environment

source test_Retro_env/bin/active


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

To install Retro on Windows(CMD):

py -m pip install Retro

To install Retro on Unix/macOs:

pip install Retro


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

Example:

pip install Retro==0.9.5


Please see the version list below table:

VersionReleased dateCommand
Retro 2.9.02020-05-10T21:51:08Windows:

py -m pip install Retro==2.9.0

Unix/macOs:

pip install Retro==2.9.0

Retro 2.8.72020-04-20T05:41:19Windows:

py -m pip install Retro==2.8.7

Unix/macOs:

pip install Retro==2.8.7

Retro 2.8.62020-04-13T22:43:20Windows:

py -m pip install Retro==2.8.6

Unix/macOs:

pip install Retro==2.8.6

Retro 2.8.52020-04-13T22:36:28Windows:

py -m pip install Retro==2.8.5

Unix/macOs:

pip install Retro==2.8.5

Retro 2.8.42020-04-01T20:56:31Windows:

py -m pip install Retro==2.8.4

Unix/macOs:

pip install Retro==2.8.4

Retro 2.8.32020-03-30T20:46:42Windows:

py -m pip install Retro==2.8.3

Unix/macOs:

pip install Retro==2.8.3

Retro 2.8.22020-03-30T05:29:20Windows:

py -m pip install Retro==2.8.2

Unix/macOs:

pip install Retro==2.8.2

Retro 2.8.12020-03-30T04:58:57Windows:

py -m pip install Retro==2.8.1

Unix/macOs:

pip install Retro==2.8.1

Retro 2.8.02020-03-03T02:46:49Windows:

py -m pip install Retro==2.8.0

Unix/macOs:

pip install Retro==2.8.0

Retro 2.7.02016-09-16T15:21:08Windows:

py -m pip install Retro==2.7.0

Unix/macOs:

pip install Retro==2.7.0

Retro 2.5.02013-05-01T21:00:21Windows:

py -m pip install Retro==2.5.0

Unix/macOs:

pip install Retro==2.5.0

Retro 2.4.02013-02-28T15:54:23Windows:

py -m pip install Retro==2.4.0

Unix/macOs:

pip install Retro==2.4.0

Retro 0.9.52010-02-18T18:07:17Windows:

py -m pip install Retro==0.9.5

Unix/macOs:

pip install Retro==0.9.5


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_Retro_downloaded_file>

On Unix/macOs:

pip install <path_to_Retro_downloaded_file>


List distribution:


Project link:

- Homepage
- Download