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

How to install whirl via python pip




whirl - A collection of tools for making websites in Python, it belongs to Classifiers:

- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3.3
- Programming Language :: Python :: 3.4
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: PyPy
- Topic :: Internet
- Topic :: Internet :: WWW/HTTP
- Topic :: Internet :: WWW/HTTP :: Browsers
- Topic :: Internet :: WWW/HTTP :: Dynamic Content
- Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries
- Topic :: Internet :: WWW/HTTP :: HTTP Servers
- Topic :: Internet :: WWW/HTTP :: Session
- Topic :: Internet :: WWW/HTTP :: WSGI
- Topic :: Internet :: WWW/HTTP :: WSGI :: Application
- Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
- Topic :: Internet :: WWW/HTTP :: WSGI :: Server

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



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_whirl_env

- Active the virtual environment

test_whirl_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_whirl_env

- Active the virtual environment

source test_whirl_env/bin/active


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

To install whirl on Windows(CMD):

py -m pip install whirl

To install whirl on Unix/macOs:

pip install whirl


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

Example:

pip install whirl==0.1.0


Please see the version list below table:

VersionReleased dateCommand
whirl 0.8.02014-07-27T04:46:19Windows:

py -m pip install whirl==0.8.0

Unix/macOs:

pip install whirl==0.8.0

whirl 0.7.12014-06-27T06:31:10Windows:

py -m pip install whirl==0.7.1

Unix/macOs:

pip install whirl==0.7.1

whirl 0.7.02014-06-27T06:03:53Windows:

py -m pip install whirl==0.7.0

Unix/macOs:

pip install whirl==0.7.0

whirl 0.6.12014-02-20T01:39:28Windows:

py -m pip install whirl==0.6.1

Unix/macOs:

pip install whirl==0.6.1

whirl 0.6.02014-02-11T04:59:25Windows:

py -m pip install whirl==0.6.0

Unix/macOs:

pip install whirl==0.6.0

whirl 0.2.02013-11-17T05:51:50Windows:

py -m pip install whirl==0.2.0

Unix/macOs:

pip install whirl==0.2.0

whirl 0.1.02013-11-17T05:35:26Windows:

py -m pip install whirl==0.1.0

Unix/macOs:

pip install whirl==0.1.0


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

Download the distribution file from whirl-0.8.0.zip or the specific whirl version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_whirl_downloaded_file>

On Unix/macOs:

pip install <path_to_whirl_downloaded_file>


List distribution:


Project link:

- Homepage