configurable-http-proxy command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
configurable-http-proxy: command not found
or when using sudo you get the following error message
sudo: configurable-http-proxy: command not found
Solutions to configurable-http-proxy: command not found
How To Fix configurable-http-proxy: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu configurable-http-proxy is provided by node-configurable-http-proxy package.
node-configurable-http-proxy is:
configurable-http-proxy (CHP) provides you with a way to update and manage a proxy table using a command line interface or REST API. It is a simple wrapper around node-http-proxy. node-http-proxy is an HTTP programmable proxying library that supports websockets and is suitable for implementing components such as reverse proxies and load balancers. By wrapping node-http-proxy, configurable-http-proxy extends this functionality to JupyterHub deployments.
Node.js is an event-based server-side JavaScript engine.
To fix this problem, we can install more using the command below.
sudo apt-get -y install node-configurable-http-proxy
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install node-configurable-http-proxy.
sudo apt -y install node-configurable-http-proxy
Or if you have aptitude installed you can use the following command.
sudo aptitude install node-configurable-http-proxy
Summary
In this tutorial we learn how to fix configurable-http-proxy command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.