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

How to install egon via python pip




egon - A lightweight, minimalist framework for the rapid development of analysis pipelines., it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)

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



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_egon_env

- Active the virtual environment

test_egon_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_egon_env

- Active the virtual environment

source test_egon_env/bin/active


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

To install egon on Windows(CMD):

py -m pip install egon

To install egon on Unix/macOs:

pip install egon


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

Example:

pip install egon==0.0.1


Please see the version list below table:

VersionReleased dateCommand
egon 0.6.12022-05-04T21:42:52Windows:

py -m pip install egon==0.6.1

Unix/macOs:

pip install egon==0.6.1

egon 0.5.12021-10-31T19:57:12Windows:

py -m pip install egon==0.5.1

Unix/macOs:

pip install egon==0.5.1

egon 0.5.02021-07-07T11:49:48Windows:

py -m pip install egon==0.5.0

Unix/macOs:

pip install egon==0.5.0

egon 0.4.12021-05-28T18:37:25Windows:

py -m pip install egon==0.4.1

Unix/macOs:

pip install egon==0.4.1

egon 0.4.0 yanked2021-05-28T02:51:53Windows:

py -m pip install egon==0.4.0                                                                          yanked

Unix/macOs:

pip install egon==0.4.0                                                                          yanked

egon 0.3.12021-01-29T17:14:07Windows:

py -m pip install egon==0.3.1

Unix/macOs:

pip install egon==0.3.1

egon 0.3.02021-01-14T23:16:40Windows:

py -m pip install egon==0.3.0

Unix/macOs:

pip install egon==0.3.0

egon 0.2.22020-12-30T22:21:55Windows:

py -m pip install egon==0.2.2

Unix/macOs:

pip install egon==0.2.2

egon 0.2.12020-12-29T15:10:59Windows:

py -m pip install egon==0.2.1

Unix/macOs:

pip install egon==0.2.1

egon 0.2.02020-12-28T17:01:09Windows:

py -m pip install egon==0.2.0

Unix/macOs:

pip install egon==0.2.0

egon 0.1.02020-12-27T23:12:14Windows:

py -m pip install egon==0.1.0

Unix/macOs:

pip install egon==0.1.0

egon 0.0.12020-12-27T01:36:13Windows:

py -m pip install egon==0.0.1

Unix/macOs:

pip install egon==0.0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_egon_downloaded_file>

On Unix/macOs:

pip install <path_to_egon_downloaded_file>


List distribution:

- egon-0.0.1-py3-none-any.whl (python version >=3.6)
- egon-0.0.1.tar.gz (python version >=3.6)
- egon-0.1.0-py3-none-any.whl (python version >=3.6)
- egon-0.1.0.tar.gz (python version >=3.6)
- egon-0.2.0-py3-none-any.whl (python version >=3.6)
- egon-0.2.0.tar.gz (python version >=3.6)
- egon-0.2.1-py3-none-any.whl (python version >=3.6)
- egon-0.2.1.tar.gz (python version >=3.6)
- egon-0.2.2-py3-none-any.whl (python version >=3.6)
- egon-0.2.2.tar.gz (python version >=3.6)
- egon-0.3.0-py3-none-any.whl (python version >=3.6)
- egon-0.3.0.tar.gz (python version >=3.6)
- egon-0.3.1-py3-none-any.whl (python version >=3.6)
- egon-0.3.1.tar.gz (python version >=3.6)
- egon-0.4.0-py3-none-any.whl (python version >=3.6)
- egon-0.4.0.tar.gz (python version >=3.6)
- egon-0.4.1-py3-none-any.whl (python version >=3.6)
- egon-0.4.1.tar.gz (python version >=3.6)
- egon-0.5.0-py3-none-any.whl (python version >=3.6)
- egon-0.5.0.tar.gz (python version >=3.6)
- egon-0.5.1-py3-none-any.whl (python version >=3.6)
- egon-0.5.1.tar.gz (python version >=3.6)
- egon-0.6.1-py3-none-any.whl (python version >=3.6)
- egon-0.6.1.tar.gz (python version >=3.6)


Project link: