2022-01-16 18:20:39 +00:00
|
|
|
---
|
|
|
|
title: "pip"
|
2022-01-26 22:35:07 +00:00
|
|
|
tags: [ "Documentation", "Networking" ]
|
2022-01-16 18:20:39 +00:00
|
|
|
---
|
2020-01-02 00:04:35 +00:00
|
|
|
|
2022-01-26 22:35:07 +00:00
|
|
|
Searching does not work.
|
|
|
|
|
|
|
|
Install with:
|
|
|
|
|
|
|
|
> pip install [ package ]
|
|
|
|
|
2020-01-02 00:04:35 +00:00
|
|
|
Upgrade all packages
|
|
|
|
|
|
|
|
> pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
|
|
|
|
|
2022-01-28 17:08:30 +00:00
|
|
|
# Troubleshooting
|
|
|
|
|
|
|
|
You may need a python3 package.
|
|
|
|
In this case, try:
|
|
|
|
|
|
|
|
> pip3 install [ package ]
|