lk/networking/pip.md

28 lines
363 B
Markdown
Raw Normal View History

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:
```bash
pip install [ package ]
```
2022-01-26 22:35:07 +00:00
2020-01-02 00:04:35 +00:00
Upgrade all packages
```bash
pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
```
2020-01-02 00:04:35 +00:00
2022-01-28 17:08:30 +00:00
# Troubleshooting
You may need a python3 package.
In this case, try:
```bash
pip3 install [ package ]