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

How to install enigma-cli via python pip




enigma-cli - German Cipher Machine Command-Line Tool, it belongs to Classifiers:

- Intended Audience :: Other Audience
- Programming Language :: Python :: 3.4

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



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_enigma-cli_env

- Active the virtual environment

test_enigma-cli_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_enigma-cli_env

- Active the virtual environment

source test_enigma-cli_env/bin/active


Step 2: OK, now, let flow below content to start the installation enigma-cli

To install enigma-cli on Windows(CMD):

py -m pip install enigma-cli

To install enigma-cli on Unix/macOs:

pip install enigma-cli


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

Example:

pip install enigma-cli==0.1.1


Please see the version list below table:

VersionReleased dateCommand
enigma-cli 1.0.02017-06-14T05:13:10Windows:

py -m pip install enigma-cli==1.0.0

Unix/macOs:

pip install enigma-cli==1.0.0

enigma-cli 0.1.42017-06-13T15:10:16Windows:

py -m pip install enigma-cli==0.1.4

Unix/macOs:

pip install enigma-cli==0.1.4

enigma-cli 0.1.32017-06-13T15:00:54Windows:

py -m pip install enigma-cli==0.1.3

Unix/macOs:

pip install enigma-cli==0.1.3

enigma-cli 0.1.22017-02-12T02:15:20Windows:

py -m pip install enigma-cli==0.1.2

Unix/macOs:

pip install enigma-cli==0.1.2

enigma-cli 0.1.12017-01-02T16:10:49Windows:

py -m pip install enigma-cli==0.1.1

Unix/macOs:

pip install enigma-cli==0.1.1


Step 4: Otherwise, you can install enigma-cli from local archives:

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_enigma-cli_downloaded_file>

On Unix/macOs:

pip install <path_to_enigma-cli_downloaded_file>


List distribution:

- enigma-cli-0.1.1.tar.gz
- enigma_cli-0.1.1-py3-none-any.whl
- enigma-cli-0.1.2.tar.gz
- enigma_cli-0.1.2-py3-none-any.whl
- enigma-cli-0.1.3.tar.gz
- enigma-cli-0.1.4.tar.gz
- enigma_cli-0.1.4-py3-none-any.whl
- enigma-cli-1.0.0.tar.gz
- enigma_cli-1.0.0-py3-none-any.whl


Project link: