Overview
This guide shows how to install bottle. bottle is a fast and simple micro-framework for python web-applications.
Prerequisites
- Python has been installed
- Optional but recommended. Setup a VirtualEnvironment and Pip has been installed.
Installation
01. Activate your virtual environment, or skip this step if not using virtual environment.
$ source {{virtual-env-directory}}/bin/activate
02. Install the bottle package
(geek-venv) $ pip install bottle
03. Verify that bottle has been installed by viewing the version.
(geek-venv) $ pip freeze | grep bottle