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

How to install newrelic_plugin_agent via python pip




newrelic_plugin_agent - Python based agent for collecting metrics for NewRelic, it belongs to Classifiers:

- Intended Audience :: System Administrators
- Operating System :: POSIX :: Linux
- Programming Language :: Python :: 2 :: Only
- Programming Language :: Python :: 2.6
- Topic :: System :: Monitoring

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



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_newrelic_plugin_agent_env

- Active the virtual environment

test_newrelic_plugin_agent_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_newrelic_plugin_agent_env

- Active the virtual environment

source test_newrelic_plugin_agent_env/bin/active


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

To install newrelic_plugin_agent on Windows(CMD):

py -m pip install newrelic_plugin_agent

To install newrelic_plugin_agent on Unix/macOs:

pip install newrelic_plugin_agent


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

Example:

pip install newrelic_plugin_agent==1.0.13


Please see the version list below table:

VersionReleased dateCommand
newrelic_plugin_agent 1.3.02014-05-16T21:00:02Windows:

py -m pip install newrelic_plugin_agent==1.3.0

Unix/macOs:

pip install newrelic_plugin_agent==1.3.0

newrelic_plugin_agent 1.2.32014-03-03T17:46:34Windows:

py -m pip install newrelic_plugin_agent==1.2.3

Unix/macOs:

pip install newrelic_plugin_agent==1.2.3

newrelic_plugin_agent 1.2.22013-11-06T00:14:47Windows:

py -m pip install newrelic_plugin_agent==1.2.2

Unix/macOs:

pip install newrelic_plugin_agent==1.2.2

newrelic_plugin_agent 1.2.12013-11-05T23:48:06Windows:

py -m pip install newrelic_plugin_agent==1.2.1

Unix/macOs:

pip install newrelic_plugin_agent==1.2.1

newrelic_plugin_agent 1.2.02013-11-05T22:38:41Windows:

py -m pip install newrelic_plugin_agent==1.2.0

Unix/macOs:

pip install newrelic_plugin_agent==1.2.0

newrelic_plugin_agent 1.1.02013-08-04T04:50:18Windows:

py -m pip install newrelic_plugin_agent==1.1.0

Unix/macOs:

pip install newrelic_plugin_agent==1.1.0

newrelic_plugin_agent 1.0.142013-07-19T02:33:04Windows:

py -m pip install newrelic_plugin_agent==1.0.14

Unix/macOs:

pip install newrelic_plugin_agent==1.0.14

newrelic_plugin_agent 1.0.132013-07-19T01:43:02Windows:

py -m pip install newrelic_plugin_agent==1.0.13

Unix/macOs:

pip install newrelic_plugin_agent==1.0.13


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_newrelic_plugin_agent_downloaded_file>

On Unix/macOs:

pip install <path_to_newrelic_plugin_agent_downloaded_file>


List distribution:

- newrelic_plugin_agent-1.0.13.tar.gz
- newrelic_plugin_agent-1.0.14.tar.gz
- newrelic_plugin_agent-1.1.0.tar.gz
- newrelic_plugin_agent-1.2.0.tar.gz
- newrelic_plugin_agent-1.2.1.tar.gz
- newrelic_plugin_agent-1.2.2.tar.gz
- newrelic_plugin_agent-1.2.3.tar.gz
- newrelic_plugin_agent-1.3.0.tar.gz


Project link:

- Homepage