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

How to install maproxy via python pip




maproxy - My first attempt to create a simple and awesome TCP proxy using Tornado, it belongs to Classifiers:

- Development Status :: 2 - Pre-Alpha
- Topic :: Internet :: Proxy Servers

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



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_maproxy_env

- Active the virtual environment

test_maproxy_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_maproxy_env

- Active the virtual environment

source test_maproxy_env/bin/active


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

To install maproxy on Windows(CMD):

py -m pip install maproxy

To install maproxy on Unix/macOs:

pip install maproxy


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

Example:

pip install maproxy==0.0.4


Please see the version list below table:

VersionReleased dateCommand
maproxy 0.0.122014-07-02T04:07:09Windows:

py -m pip install maproxy==0.0.12

Unix/macOs:

pip install maproxy==0.0.12

maproxy 0.0.112014-06-23T06:37:35Windows:

py -m pip install maproxy==0.0.11

Unix/macOs:

pip install maproxy==0.0.11

maproxy 0.0.102014-06-22T07:29:07Windows:

py -m pip install maproxy==0.0.10

Unix/macOs:

pip install maproxy==0.0.10

maproxy 0.0.92014-06-22T06:57:31Windows:

py -m pip install maproxy==0.0.9

Unix/macOs:

pip install maproxy==0.0.9

maproxy 0.0.82014-06-22T06:41:17Windows:

py -m pip install maproxy==0.0.8

Unix/macOs:

pip install maproxy==0.0.8

maproxy 0.0.72014-06-22T06:40:19Windows:

py -m pip install maproxy==0.0.7

Unix/macOs:

pip install maproxy==0.0.7

maproxy 0.0.62014-06-21T23:45:07Windows:

py -m pip install maproxy==0.0.6

Unix/macOs:

pip install maproxy==0.0.6

maproxy 0.0.52014-06-21T23:44:23Windows:

py -m pip install maproxy==0.0.5

Unix/macOs:

pip install maproxy==0.0.5

maproxy 0.0.42014-06-21T23:21:54Windows:

py -m pip install maproxy==0.0.4

Unix/macOs:

pip install maproxy==0.0.4


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

Download the distribution file from maproxy-0.0.12.zip or the specific maproxy version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_maproxy_downloaded_file>

On Unix/macOs:

pip install <path_to_maproxy_downloaded_file>


List distribution:

- maproxy-0.0.4-py3.4.egg
- maproxy-0.0.4.win32.exe
- maproxy-0.0.4.zip
- maproxy-0.0.5-py3.4.egg
- maproxy-0.0.5.win32.exe
- maproxy-0.0.5.zip
- maproxy-0.0.6-py3.4.egg
- maproxy-0.0.6.win32.exe
- maproxy-0.0.6.zip
- maproxy-0.0.7-py3.4.egg
- maproxy-0.0.7.win32.exe
- maproxy-0.0.7.zip
- maproxy-0.0.8-py2.7.egg
- maproxy-0.0.8-py3.4.egg
- maproxy-0.0.8.win32.exe
- maproxy-0.0.8.zip
- maproxy-0.0.9-py2.7.egg
- maproxy-0.0.9-py3.4.egg
- maproxy-0.0.9.win32.exe
- maproxy-0.0.9.zip
- maproxy-0.0.10-py2.7.egg
- maproxy-0.0.10-py3.4.egg
- maproxy-0.0.10.win32.exe
- maproxy-0.0.10.zip
- maproxy-0.0.11-py2.7.egg
- maproxy-0.0.11-py3.4.egg
- maproxy-0.0.11.win32.exe
- maproxy-0.0.11.zip
- maproxy-0.0.12-py2.7.egg
- maproxy-0.0.12-py3.4.egg
- maproxy-0.0.12.win-amd64.exe
- maproxy-0.0.12.win32.exe
- maproxy-0.0.12.zip


Project link: