Compare commits

..

No commits in common. "df53667f91c4674dadc2daf5bfb5ccb96498a18f" and "51e489a8e3ee0b6747b2578640bd865a4e9b9809" have entirely different histories.

3 changed files with 29 additions and 2 deletions

View File

@ -1,6 +1,6 @@
--- ---
title: "Easy Network Graph" title: "graph-easy"
tags: [ "Documentation", "Networking" ] tags: [ "Documentation" ]
--- ---
Set up a file like this, called `troubleshooting.txt`. Set up a file like this, called `troubleshooting.txt`.

27
networking/pip.md Normal file
View File

@ -0,0 +1,27 @@
---
title: "pip"
tags: [ "Documentation", "Networking" ]
---
```
Searching does not work.
Install with:
```bash
pip install [ package ]
```
Upgrade all packages
```bash
pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
```
# Troubleshooting
You may need a python3 package.
In this case, try:
```bash
pip3 install [ package ]