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

How to install essentials via python pip




essentials - General purpose classes and functions, reusable in any kind of Python application, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- License :: OSI Approved :: MIT License
- Operating System :: OS Independent
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3.7
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: 3.9

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



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_essentials_env

- Active the virtual environment

test_essentials_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_essentials_env

- Active the virtual environment

source test_essentials_env/bin/active


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

To install essentials on Windows(CMD):

py -m pip install essentials

To install essentials on Unix/macOs:

pip install essentials


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

Example:

pip install essentials==1.0.8


Please see the version list below table:

VersionReleased dateCommand
essentials 1.1.52022-03-14T16:58:27Windows:

py -m pip install essentials==1.1.5

Unix/macOs:

pip install essentials==1.1.5

essentials 1.1.42020-11-08T20:29:28Windows:

py -m pip install essentials==1.1.4

Unix/macOs:

pip install essentials==1.1.4

essentials 1.1.32020-04-18T18:20:47Windows:

py -m pip install essentials==1.1.3

Unix/macOs:

pip install essentials==1.1.3

essentials 1.1.22019-09-26T04:44:32Windows:

py -m pip install essentials==1.1.2

Unix/macOs:

pip install essentials==1.1.2

essentials 1.1.12019-09-24T16:57:16Windows:

py -m pip install essentials==1.1.1

Unix/macOs:

pip install essentials==1.1.1

essentials 1.1.02019-09-24T15:25:57Windows:

py -m pip install essentials==1.1.0

Unix/macOs:

pip install essentials==1.1.0

essentials 1.0.92019-09-21T20:32:51Windows:

py -m pip install essentials==1.0.9

Unix/macOs:

pip install essentials==1.0.9

essentials 1.0.82019-09-21T11:35:13Windows:

py -m pip install essentials==1.0.8

Unix/macOs:

pip install essentials==1.0.8


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_essentials_downloaded_file>

On Unix/macOs:

pip install <path_to_essentials_downloaded_file>


List distribution:

- essentials-1.0.8-py3-none-any.whl
- essentials-1.0.8.tar.gz
- essentials-1.0.9-py3-none-any.whl
- essentials-1.0.9.tar.gz
- essentials-1.1.0-py3-none-any.whl
- essentials-1.1.1-py3-none-any.whl
- essentials-1.1.1.tar.gz
- essentials-1.1.2-py3-none-any.whl
- essentials-1.1.2.tar.gz
- essentials-1.1.3-py3-none-any.whl
- essentials-1.1.3.tar.gz
- essentials-1.1.4-py3-none-any.whl
- essentials-1.1.4.tar.gz
- essentials-1.1.5-py3-none-any.whl
- essentials-1.1.5.tar.gz


Project link:

- Homepage