Difference between revisions of "Template:Pip"

From BITPlan Wiki
Jump to navigation Jump to search
 
(11 intermediate revisions by the same user not shown)
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
 
}}
 
}}
Line 23: Line 25:
 
}}
 
}}
 
</includeonly>
 
</includeonly>
== Scripts==
 
=== tbmail ===
 
<source lang='bash'>
 
retrieve a thunderbird mail by user and user id
 
usage: tbmail [-h] [-d] [-V] [-u USER] [-i ID]
 
 
script to retrieve thunderbird mail via user and mailid
 
 
  Created by Wolfgang Fahl on 2021-09-23.
 
  Copyright 2020-2021 Wolfgang Fahl. All rights reserved.
 
 
  Licensed under the Apache License 2.0
 
  http://www.apache.org/licenses/LICENSE-2.0
 
 
  Distributed on an "AS IS" basis without warranties
 
  or conditions of any kind, either express or implied.
 
 
USAGE
 
 
optional arguments:
 
  -h, --help            show this help message and exit
 
  -d, --debug          set debug level [default: None]
 
  -V, --version        show program's version number and exit
 
  -u USER, --user USER  id of the user
 
  -i ID, --id ID        id of the mail to retrieve
 
</source>
 

Latest revision as of 14:04, 2 March 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