Installation#

How to install the package#

Install the whole umbrella package (or add it to your requirements.txt file):

pip install umbrella-py

Hint

In most cases you want to create a virtual environment as it provides extra security features when working with packages. To create a simple virtual environment, run:

Linux#
$ python3 -m venv ./venv && source ./venv/bin/activate
Windows#
% py -m venv .\venv && .\venv\Scripts\activate.bat