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

How to install EDDIE-Tool via python pip




EDDIE-Tool - The EDDIE Tool is a system and network monitoring, security, and performance analysis agent developed entirely in threaded Python. Its key features are portability, extendibility, and powerful configuration., it belongs to Classifiers:

- Environment :: No Input/Output (Daemon)
- Intended Audience :: System Administrators
- License :: OSI Approved :: GNU General Public License (GPL)
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX :: BSD
- Operating System :: POSIX :: BSD :: FreeBSD
- Operating System :: POSIX :: BSD :: OpenBSD
- Operating System :: POSIX :: HP-UX
- Operating System :: POSIX :: Linux
- Operating System :: POSIX :: SunOS/Solaris
- Topic :: System
- Topic :: System :: Monitoring
- Topic :: System :: Networking
- Topic :: System :: Networking :: Monitoring
- Topic :: System :: Systems Administration

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



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_EDDIE-Tool_env

- Active the virtual environment

test_EDDIE-Tool_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_EDDIE-Tool_env

- Active the virtual environment

source test_EDDIE-Tool_env/bin/active


Step 2: OK, now, let flow below content to start the installation EDDIE-Tool

To install EDDIE-Tool on Windows(CMD):

py -m pip install EDDIE-Tool

To install EDDIE-Tool on Unix/macOs:

pip install EDDIE-Tool


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

Example:

pip install EDDIE-Tool==0.35


Please see the version list below table:

VersionReleased dateCommand
EDDIE-Tool 1.0.02009-09-28T14:19:16Windows:

py -m pip install EDDIE-Tool==1.0.0

Unix/macOs:

pip install EDDIE-Tool==1.0.0

EDDIE-Tool 0.37.3.12009-03-02T07:43:45Windows:

py -m pip install EDDIE-Tool==0.37.3.1

Unix/macOs:

pip install EDDIE-Tool==0.37.3.1

EDDIE-Tool 0.37.32009-01-05T04:50:14Windows:

py -m pip install EDDIE-Tool==0.37.3

Unix/macOs:

pip install EDDIE-Tool==0.37.3

EDDIE-Tool 0.37.22008-11-04T12:56:17Windows:

py -m pip install EDDIE-Tool==0.37.2

Unix/macOs:

pip install EDDIE-Tool==0.37.2

EDDIE-Tool 0.362007-12-07T01:48:00Windows:

py -m pip install EDDIE-Tool==0.36

Unix/macOs:

pip install EDDIE-Tool==0.36

EDDIE-Tool 0.352005-11-01T01:56:38Windows:

py -m pip install EDDIE-Tool==0.35

Unix/macOs:

pip install EDDIE-Tool==0.35


Step 4: Otherwise, you can install EDDIE-Tool from local archives:

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_EDDIE-Tool_downloaded_file>

On Unix/macOs:

pip install <path_to_EDDIE-Tool_downloaded_file>


List distribution:

- EDDIE-Tool-0.37.2.tar.gz
- EDDIE-Tool-0.37.3.tar.gz
- EDDIE-Tool-0.37.3.1.tar.gz
- EDDIE-Tool-1.0.0.tar.gz


Project link:

- Homepage
- Download