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

How to install tale via python pip




tale - Interactive Fiction, MUD & mudlib framework, it belongs to Classifiers:

- Intended Audience :: End Users/Desktop
- License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
- Topic :: Communications
- Topic :: Communications :: Chat
- Topic :: Games/Entertainment
- Topic :: Games/Entertainment :: Multi-User Dungeons (MUD)
- Topic :: Games/Entertainment :: Role-Playing

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



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_tale_env

- Active the virtual environment

test_tale_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_tale_env

- Active the virtual environment

source test_tale_env/bin/active


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

To install tale on Windows(CMD):

py -m pip install tale

To install tale on Unix/macOs:

pip install tale


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

Example:

pip install tale==2.0


Please see the version list below table:

VersionReleased dateCommand
tale 4.72020-07-04T15:55:43Windows:

py -m pip install tale==4.7

Unix/macOs:

pip install tale==4.7

tale 4.62019-02-21T21:41:18Windows:

py -m pip install tale==4.6

Unix/macOs:

pip install tale==4.6

tale 4.52018-12-09T16:41:30Windows:

py -m pip install tale==4.5

Unix/macOs:

pip install tale==4.5

tale 4.42018-07-17T22:57:13Windows:

py -m pip install tale==4.4

Unix/macOs:

pip install tale==4.4

tale 4.32018-07-04T17:22:00Windows:

py -m pip install tale==4.3

Unix/macOs:

pip install tale==4.3

tale 4.22018-06-30T13:05:48Windows:

py -m pip install tale==4.2

Unix/macOs:

pip install tale==4.2

tale 4.12018-03-27T19:43:04Windows:

py -m pip install tale==4.1

Unix/macOs:

pip install tale==4.1

tale 4.02017-08-08T12:21:26Windows:

py -m pip install tale==4.0

Unix/macOs:

pip install tale==4.0

tale 3.72017-07-26T21:05:50Windows:

py -m pip install tale==3.7

Unix/macOs:

pip install tale==3.7

tale 3.62017-07-15T15:36:56Windows:

py -m pip install tale==3.6

Unix/macOs:

pip install tale==3.6

tale 3.52017-07-09T10:30:22Windows:

py -m pip install tale==3.5

Unix/macOs:

pip install tale==3.5

tale 3.42017-06-19T19:26:51Windows:

py -m pip install tale==3.4

Unix/macOs:

pip install tale==3.4

tale 3.32017-06-03T14:43:10Windows:

py -m pip install tale==3.3

Unix/macOs:

pip install tale==3.3

tale 3.22017-05-27T12:06:28Windows:

py -m pip install tale==3.2

Unix/macOs:

pip install tale==3.2

tale 3.12017-05-23T20:09:16Windows:

py -m pip install tale==3.1

Unix/macOs:

pip install tale==3.1

tale 3.02017-05-19T00:43:16Windows:

py -m pip install tale==3.0

Unix/macOs:

pip install tale==3.0

tale 2.82017-01-22T15:36:24Windows:

py -m pip install tale==2.8

Unix/macOs:

pip install tale==2.8

tale 2.72016-01-27T20:51:44Windows:

py -m pip install tale==2.7

Unix/macOs:

pip install tale==2.7

tale 2.62015-10-20T23:03:36Windows:

py -m pip install tale==2.6

Unix/macOs:

pip install tale==2.6

tale 2.52015-10-18T21:46:24Windows:

py -m pip install tale==2.5

Unix/macOs:

pip install tale==2.5

tale 2.42015-06-27T12:10:05Windows:

py -m pip install tale==2.4

Unix/macOs:

pip install tale==2.4

tale 2.32015-05-24T14:34:16Windows:

py -m pip install tale==2.3

Unix/macOs:

pip install tale==2.3

tale 2.22015-05-21T22:17:26Windows:

py -m pip install tale==2.2

Unix/macOs:

pip install tale==2.2

tale 2.12015-05-15T14:12:06Windows:

py -m pip install tale==2.1

Unix/macOs:

pip install tale==2.1

tale 2.02015-05-14T12:39:17Windows:

py -m pip install tale==2.0

Unix/macOs:

pip install tale==2.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_tale_downloaded_file>

On Unix/macOs:

pip install <path_to_tale_downloaded_file>


List distribution:


Project link:

- Homepage