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

How to install elementals via python pip




elementals - Basic utilities for CTF (or exploit) scripts, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License (GPL)

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



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_elementals_env

- Active the virtual environment

test_elementals_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_elementals_env

- Active the virtual environment

source test_elementals_env/bin/active


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

To install elementals on Windows(CMD):

py -m pip install elementals

To install elementals on Unix/macOs:

pip install elementals


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

Example:

pip install elementals==0.9


Please see the version list below table:

VersionReleased dateCommand
elementals 1.2.62019-03-14T18:22:04Windows:

py -m pip install elementals==1.2.6

Unix/macOs:

pip install elementals==1.2.6

elementals 1.2.52019-01-29T17:53:34Windows:

py -m pip install elementals==1.2.5

Unix/macOs:

pip install elementals==1.2.5

elementals 1.2.42018-12-19T21:07:46Windows:

py -m pip install elementals==1.2.4

Unix/macOs:

pip install elementals==1.2.4

elementals 1.2.32018-12-16T11:22:35Windows:

py -m pip install elementals==1.2.3

Unix/macOs:

pip install elementals==1.2.3

elementals 1.2.22018-12-11T23:52:31Windows:

py -m pip install elementals==1.2.2

Unix/macOs:

pip install elementals==1.2.2

elementals 1.2.12018-12-11T09:21:40Windows:

py -m pip install elementals==1.2.1

Unix/macOs:

pip install elementals==1.2.1

elementals 1.1.12018-09-20T13:14:28Windows:

py -m pip install elementals==1.1.1

Unix/macOs:

pip install elementals==1.1.1

elementals 1.02018-07-21T12:36:40Windows:

py -m pip install elementals==1.0

Unix/macOs:

pip install elementals==1.0

elementals 0.92018-03-07T19:30:00Windows:

py -m pip install elementals==0.9

Unix/macOs:

pip install elementals==0.9


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_elementals_downloaded_file>

On Unix/macOs:

pip install <path_to_elementals_downloaded_file>


List distribution:

- elementals-0.9-py2-none-any.whl
- elementals-0.9.tar.gz
- elementals-1.0.tar.gz
- elementals-1.1.1-py2.py3-none-any.whl
- elementals-1.1.1.tar.gz
- elementals-1.2.1-py2-none-any.whl
- elementals-1.2.1.tar.gz
- elementals-1.2.2-py2-none-any.whl
- elementals-1.2.2.tar.gz
- elementals-1.2.3-py2-none-any.whl
- elementals-1.2.3.tar.gz
- elementals-1.2.4-py2.py3-none-any.whl
- elementals-1.2.4.tar.gz
- elementals-1.2.5-py2.py3-none-any.whl
- elementals-1.2.5.tar.gz
- elementals-1.2.6-py2.py3-none-any.whl
- elementals-1.2.6.tar.gz
- elementals-1.3.1-py2.py3-none-any.whl
- elementals-1.3.1.tar.gz


Project link:

- Homepage