This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
fuss:python [2020/02/25 02:07] – [Only in (Monty) Python] office | fuss:python [2023/11/26 15:11] (current) – office | ||
---|---|---|---|
Line 95: | Line 95: | ||
====== Only in (Monty) Python ====== | ====== Only in (Monty) Python ====== | ||
- | {{: | + | < |
+ | TypeError: dump() takes at least 2 arguments (2 given) | ||
+ | </ | ||
====== Memory Error When Installing Packages with Pip ====== | ====== Memory Error When Installing Packages with Pip ====== | ||
In case packages cannot be installed and a '' | In case packages cannot be installed and a '' | ||
+ | |||
+ | ====== Installing Python Applications without Breaking the Environment ====== | ||
+ | |||
+ | Linux distributions that contain python packages as part of the distribution packaging systems cannot really use '' | ||
+ | |||
+ | An alternative is to use '' | ||
+ | <code bash> | ||
+ | aptitude install pipx | ||
+ | </ | ||
+ | |||
+ | and then to install the package using '' | ||
+ | <code bash> | ||
+ | pipx install unmanic | ||
+ | </ | ||
+ | where: | ||
+ | * '' | ||
+ | |||
+ | '' | ||
+ | |||
+ | One trick is to specify '' | ||
+ | |||
+ | For example, the commands: | ||
+ | <code bash> | ||
+ | export PIPX_HOME=/ | ||
+ | export PIPX_BIN_DIR=/ | ||
+ | pipx install unmanic | ||
+ | </ | ||
+ | |||
+ | will install the '' | ||
+ | |||
+ | Now, in order to install a different application, |
For the contact, copyright, license, warranty and privacy terms for the usage of this website please see the contact, license, privacy, copyright.