.. include:: links.rst Installation ============ In notebook directly -------------------- Jupyter_ notebook's underlying IPython_ kernel_ provides a simple way to communicate with pip_ via |ipy_magic|_ (|ipy_pip|_). .. code:: # pip directly %pip install taste # command invoking syntax !pip install taste Console ------- As with any modern Python_ package, use pip_:: pip install taste # or on platforms with pip3 alias pip3 install taste Proxy ^^^^^ Some users require to use a proxy to interact with the Internet, one of the common approaches is to use an |env_var|_. - Notebook:: In [1]: from os import environ environ["https_proxy"] = "" In [2]: %pip install taste Out [2]: Collecting taste ... - GNU/Linux or MacOS:: https_proxy= pip install taste - Windows:: set https_proxy= pip install taste