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

How to install pyAesCrypt via python pip




pyAesCrypt - Encrypt and decrypt files and streams in AES Crypt format (version 2), it belongs to Classifiers:

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

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



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_pyAesCrypt_env

- Active the virtual environment

test_pyAesCrypt_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_pyAesCrypt_env

- Active the virtual environment

source test_pyAesCrypt_env/bin/active


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

To install pyAesCrypt on Windows(CMD):

py -m pip install pyAesCrypt

To install pyAesCrypt on Unix/macOs:

pip install pyAesCrypt


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

Example:

pip install pyAesCrypt==0.1


Please see the version list below table:

VersionReleased dateCommand
pyAesCrypt 6.0.02021-05-09T10:17:43Windows:

py -m pip install pyAesCrypt==6.0.0

Unix/macOs:

pip install pyAesCrypt==6.0.0

pyAesCrypt 5.0.02021-01-22T11:21:54Windows:

py -m pip install pyAesCrypt==5.0.0

Unix/macOs:

pip install pyAesCrypt==5.0.0

pyAesCrypt 0.4.42020-12-30T14:31:44Windows:

py -m pip install pyAesCrypt==0.4.4

Unix/macOs:

pip install pyAesCrypt==0.4.4

pyAesCrypt 0.4.32019-04-28T09:42:11Windows:

py -m pip install pyAesCrypt==0.4.3

Unix/macOs:

pip install pyAesCrypt==0.4.3

pyAesCrypt 0.4.22018-09-30T10:49:20Windows:

py -m pip install pyAesCrypt==0.4.2

Unix/macOs:

pip install pyAesCrypt==0.4.2

pyAesCrypt 0.4.12018-09-30T09:12:46Windows:

py -m pip install pyAesCrypt==0.4.1

Unix/macOs:

pip install pyAesCrypt==0.4.1

pyAesCrypt 0.42018-08-19T15:34:50Windows:

py -m pip install pyAesCrypt==0.4

Unix/macOs:

pip install pyAesCrypt==0.4

pyAesCrypt 0.3.12018-05-26T10:03:42Windows:

py -m pip install pyAesCrypt==0.3.1

Unix/macOs:

pip install pyAesCrypt==0.3.1

pyAesCrypt 0.32017-08-26T10:39:32Windows:

py -m pip install pyAesCrypt==0.3

Unix/macOs:

pip install pyAesCrypt==0.3

pyAesCrypt 0.2.22017-08-20T15:50:33Windows:

py -m pip install pyAesCrypt==0.2.2

Unix/macOs:

pip install pyAesCrypt==0.2.2

pyAesCrypt 0.2.12017-02-11T18:51:32Windows:

py -m pip install pyAesCrypt==0.2.1

Unix/macOs:

pip install pyAesCrypt==0.2.1

pyAesCrypt 0.22017-01-21T11:38:42Windows:

py -m pip install pyAesCrypt==0.2

Unix/macOs:

pip install pyAesCrypt==0.2

pyAesCrypt 0.1.22016-01-03T12:23:13Windows:

py -m pip install pyAesCrypt==0.1.2

Unix/macOs:

pip install pyAesCrypt==0.1.2

pyAesCrypt 0.1.12016-01-03T12:12:31Windows:

py -m pip install pyAesCrypt==0.1.1

Unix/macOs:

pip install pyAesCrypt==0.1.1

pyAesCrypt 0.12016-01-03T11:40:06Windows:

py -m pip install pyAesCrypt==0.1

Unix/macOs:

pip install pyAesCrypt==0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pyAesCrypt_downloaded_file>

On Unix/macOs:

pip install <path_to_pyAesCrypt_downloaded_file>


List distribution:


Project link:

- Homepage