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

How to install pyaes via python pip




pyaes - Pure-Python Implementation of the AES block-cipher and common modes of operation, it belongs to Classifiers:

- Topic :: Security
- Topic :: Security :: Cryptography

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



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_pyaes_env

- Active the virtual environment

test_pyaes_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_pyaes_env

- Active the virtual environment

source test_pyaes_env/bin/active


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

To install pyaes on Windows(CMD):

py -m pip install pyaes

To install pyaes on Unix/macOs:

pip install pyaes


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

Example:

pip install pyaes==0.1.0


Please see the version list below table:

VersionReleased dateCommand
pyaes 1.6.12017-09-20T21:17:54Windows:

py -m pip install pyaes==1.6.1

Unix/macOs:

pip install pyaes==1.6.1

pyaes 1.6.02016-06-01T21:29:05Windows:

py -m pip install pyaes==1.6.0

Unix/macOs:

pip install pyaes==1.6.0

pyaes 1.5.02016-05-25T22:00:58Windows:

py -m pip install pyaes==1.5.0

Unix/macOs:

pip install pyaes==1.5.0

pyaes 1.4.02016-05-23T23:19:03Windows:

py -m pip install pyaes==1.4.0

Unix/macOs:

pip install pyaes==1.4.0

pyaes 1.3.02014-07-25T03:48:46Windows:

py -m pip install pyaes==1.3.0

Unix/macOs:

pip install pyaes==1.3.0

pyaes 1.2.02014-06-20T05:27:23Windows:

py -m pip install pyaes==1.2.0

Unix/macOs:

pip install pyaes==1.2.0

pyaes 1.1.02014-05-13T01:50:29Windows:

py -m pip install pyaes==1.1.0

Unix/macOs:

pip install pyaes==1.1.0

pyaes 1.0.02014-05-12T23:12:48Windows:

py -m pip install pyaes==1.0.0

Unix/macOs:

pip install pyaes==1.0.0

pyaes 0.1.02014-05-12T19:31:35Windows:

py -m pip install pyaes==0.1.0

Unix/macOs:

pip install pyaes==0.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pyaes_downloaded_file>

On Unix/macOs:

pip install <path_to_pyaes_downloaded_file>


List distribution:


Project link:

- Homepage