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

How to install Tenjin via python pip




Tenjin - a fast and full-featured template engine based on embedded Python, it belongs to Classifiers:

- Environment :: Console
- Programming Language :: Python :: 2.4
- Programming Language :: Python :: 2.5
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 3.0
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.2
- Topic :: Internet
- Topic :: Internet :: WWW/HTTP
- Topic :: Internet :: WWW/HTTP :: Dynamic Content
- Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries

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



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_Tenjin_env

- Active the virtual environment

test_Tenjin_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_Tenjin_env

- Active the virtual environment

source test_Tenjin_env/bin/active


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

To install Tenjin on Windows(CMD):

py -m pip install Tenjin

To install Tenjin on Unix/macOs:

pip install Tenjin


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

Example:

pip install Tenjin==0.6.0


Please see the version list below table:

VersionReleased dateCommand
Tenjin 1.1.12012-05-17T22:39:59Windows:

py -m pip install Tenjin==1.1.1

Unix/macOs:

pip install Tenjin==1.1.1

Tenjin 1.1.02012-02-16T14:44:10Windows:

py -m pip install Tenjin==1.1.0

Unix/macOs:

pip install Tenjin==1.1.0

Tenjin 1.0.22011-04-29T11:20:10Windows:

py -m pip install Tenjin==1.0.2

Unix/macOs:

pip install Tenjin==1.0.2

Tenjin 1.0.12011-02-22T02:06:37Windows:

py -m pip install Tenjin==1.0.1

Unix/macOs:

pip install Tenjin==1.0.1

Tenjin 1.0.02011-02-21T20:03:25Windows:

py -m pip install Tenjin==1.0.0

Unix/macOs:

pip install Tenjin==1.0.0

Tenjin 0.9.02010-07-19T14:10:12Windows:

py -m pip install Tenjin==0.9.0

Unix/macOs:

pip install Tenjin==0.9.0

Tenjin 0.8.12009-06-14T07:41:46Windows:

py -m pip install Tenjin==0.8.1

Unix/macOs:

pip install Tenjin==0.8.1

Tenjin 0.8.02009-06-06T16:23:57Windows:

py -m pip install Tenjin==0.8.0

Unix/macOs:

pip install Tenjin==0.8.0

Tenjin 0.7.02009-05-24T15:19:50Windows:

py -m pip install Tenjin==0.7.0

Unix/macOs:

pip install Tenjin==0.7.0

Tenjin 0.6.22008-02-27T14:33:50Windows:

py -m pip install Tenjin==0.6.2

Unix/macOs:

pip install Tenjin==0.6.2

Tenjin 0.6.12007-10-23T00:10:15Windows:

py -m pip install Tenjin==0.6.1

Unix/macOs:

pip install Tenjin==0.6.1

Tenjin 0.6.02007-08-06T21:04:50Windows:

py -m pip install Tenjin==0.6.0

Unix/macOs:

pip install Tenjin==0.6.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_Tenjin_downloaded_file>

On Unix/macOs:

pip install <path_to_Tenjin_downloaded_file>


List distribution:


Project link:

- Homepage
- Download