Difference between revisions of "Template:Pip"
Jump to navigation
Jump to search
(Created page with "<noinclude> Category:Template </noinclude> <includeonly> === upgrade === <source lang='bash'> pip install ConferenceCorpus -U # alternatively if your pip is not a python3...") |
|||
(21 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<noinclude> | <noinclude> | ||
+ | This is a template to describe the installation procedure via pip for a python package | ||
+ | = Usage = | ||
+ | == Example == | ||
+ | <pre>{{pip|pyLodStorage}}</pre> | ||
+ | {{pip|pyLodStorage}} | ||
[[Category:Template]] | [[Category:Template]] | ||
</noinclude> | </noinclude> | ||
− | <includeonly> | + | <includeonly>{{#vardefine:package|{{{1|pyLodStorage}}}}} |
+ | = Installation = | ||
+ | {{#tag:source| | ||
+ | pip install {{#var:package}} | ||
+ | # alternatively if your pip is not a python3 pip | ||
+ | pip3 install {{#var:package}} | ||
+ | # local install from source directory of {{#var:package}} | ||
+ | pip install . | ||
+ | |lang=bash | ||
+ | }} | ||
=== upgrade === | === upgrade === | ||
− | + | {{#tag:source| | |
− | pip install | + | pip install {{#var:package}} -U |
# alternatively if your pip is not a python3 pip | # alternatively if your pip is not a python3 pip | ||
− | pip3 install | + | pip3 install {{#var:package}} -U |
− | + | |lang=bash | |
+ | }} | ||
+ | |||
</includeonly> | </includeonly> |
Latest revision as of 05:21, 6 May 2024
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