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

How to install xtea3 via python pip




xtea3 - Obsolete Python 3 implementation of XTEA., it belongs to Classifiers:

- Development Status :: 7 - Inactive
- Intended Audience :: Education
- License :: Public Domain
- Topic :: Security
- Topic :: Security :: Cryptography

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



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_xtea3_env

- Active the virtual environment

test_xtea3_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_xtea3_env

- Active the virtual environment

source test_xtea3_env/bin/active


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

To install xtea3 on Windows(CMD):

py -m pip install xtea3

To install xtea3 on Unix/macOs:

pip install xtea3


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

Example:

pip install xtea3==0.1


Please see the version list below table:

VersionReleased dateCommand
xtea3 1.0.02019-06-17T11:25:42Windows:

py -m pip install xtea3==1.0.0

Unix/macOs:

pip install xtea3==1.0.0

xtea3 0.3.22015-07-30T21:33:51Windows:

py -m pip install xtea3==0.3.2

Unix/macOs:

pip install xtea3==0.3.2

xtea3 0.3.12014-10-30T17:59:07Windows:

py -m pip install xtea3==0.3.1

Unix/macOs:

pip install xtea3==0.3.1

xtea3 0.32014-07-21T14:00:07Windows:

py -m pip install xtea3==0.3

Unix/macOs:

pip install xtea3==0.3

xtea3 0.22014-07-18T16:51:15Windows:

py -m pip install xtea3==0.2

Unix/macOs:

pip install xtea3==0.2

xtea3 0.12014-06-22T11:59:04Windows:

py -m pip install xtea3==0.1

Unix/macOs:

pip install xtea3==0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_xtea3_downloaded_file>

On Unix/macOs:

pip install <path_to_xtea3_downloaded_file>


List distribution:


Project link:

- Homepage
- Source
- Tracker