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

How to install furion via python pip




furion - A socks5 proxy with ssl support, it belongs to Classifiers:

- Intended Audience :: End Users/Desktop
- Programming Language :: Python :: 2.6
- Topic :: Internet :: Proxy Servers

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



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_furion_env

- Active the virtual environment

test_furion_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_furion_env

- Active the virtual environment

source test_furion_env/bin/active


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

To install furion on Windows(CMD):

py -m pip install furion

To install furion on Unix/macOs:

pip install furion


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

Example:

pip install furion==1.4.6


Please see the version list below table:

VersionReleased dateCommand
furion 1.5.12020-07-15T17:02:54Windows:

py -m pip install furion==1.5.1

Unix/macOs:

pip install furion==1.5.1

furion 1.5.02020-07-04T09:16:26Windows:

py -m pip install furion==1.5.0

Unix/macOs:

pip install furion==1.5.0

furion 1.4.92020-06-27T16:34:49Windows:

py -m pip install furion==1.4.9

Unix/macOs:

pip install furion==1.4.9

furion 1.4.82020-06-21T07:08:18Windows:

py -m pip install furion==1.4.8

Unix/macOs:

pip install furion==1.4.8

furion 1.4.72017-10-15T07:05:53Windows:

py -m pip install furion==1.4.7

Unix/macOs:

pip install furion==1.4.7

furion 1.4.62015-11-29T14:55:41Windows:

py -m pip install furion==1.4.6

Unix/macOs:

pip install furion==1.4.6


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_furion_downloaded_file>

On Unix/macOs:

pip install <path_to_furion_downloaded_file>


List distribution:

- furion-1.4.6.tar.gz
- furion-1.4.7-py2.py3-none-any.whl
- furion-1.4.7.tar.gz
- furion-1.4.8-py2.py3-none-any.whl
- furion-1.4.8.tar.gz
- furion-1.4.9-py2.py3-none-any.whl
- furion-1.4.9.tar.gz
- furion-1.5.0-py2.py3-none-any.whl
- furion-1.5.0.tar.gz
- furion-1.5.1-py2.py3-none-any.whl
- furion-1.5.1.tar.gz


Project link:

- Homepage