Template:Pip: Difference between revisions

From BITPlan Wiki
Jump to navigation Jump to search
No edit summary
Line 13: Line 13:
# alternatively if your pip is not a python3 pip
# alternatively if your pip is not a python3 pip
pip3 install {{#var:package}}  
pip3 install {{#var:package}}  
# local install from source directory of {{#var:package}}
pip install .
|lang=bash
|lang=bash
}}
}}

Revision as of 12:48, 14 February 2022

This is a template to describe the installation procedure via pip for a python package

Usage

Example

{{pip|pyLodStorage}}


Installation

pip install pyLodStorage
# alternatively if your pip is not a python3 pip
pip3 install pyLodStorage 
# local install from source directory of pyLodStorage 
pip install .

upgrade

pip install pyLodStorage  -U
# alternatively if your pip is not a python3 pip
pip3 install pyLodStorage -U