From df53667f91c4674dadc2daf5bfb5ccb96498a18f Mon Sep 17 00:00:00 2001 From: Malin Freeborn Date: Tue, 14 May 2024 18:32:28 +0200 Subject: [PATCH] typo --- ...{sharing_secrest.md => sharing_secrets.md} | 0 networking/pip.md | 27 ------------------- 2 files changed, 27 deletions(-) rename data/{sharing_secrest.md => sharing_secrets.md} (100%) delete mode 100644 networking/pip.md diff --git a/data/sharing_secrest.md b/data/sharing_secrets.md similarity index 100% rename from data/sharing_secrest.md rename to data/sharing_secrets.md diff --git a/networking/pip.md b/networking/pip.md deleted file mode 100644 index d7d4862..0000000 --- a/networking/pip.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -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 ]