feat: add Pip3 setup

This commit is contained in:
dancingCycle 2022-03-17 21:47:26 +01:00
parent 15067eed96
commit 1b81cfc7c3
3 changed files with 47 additions and 2 deletions

View File

@ -2,26 +2,34 @@
## General Setup Steps
* [Apache](doc/apache.md)
* [Create bootable USB Drive For OS Installation](doc/bootable-usb-drive.md)
* [Debian Installation](doc/debian-install.md)
* [Debian Configuration](doc/debian-config.md)
* [Emacs](doc/emacs.md)
* [Email Client](doc/email-client.md)
* [Firewall](doc/firewall.md)
* [Gimp](doc/gimp.md)
* [Git](doc/git.md)
* [GitHub Using SSH](doc/github-ssh.md)
* [Group and User](doc/grp-usr.md)
* [Java](doc/java.md)
* [Mastarm](doc/mastarm.md)
* [Maven](doc/maven.md)
* [Mongo](doc/mongo.md)
* [MS Teams](doc/ms-teams.md)
* [NextCloud](doc/nextcloud.md)
* [Node](doc/node.md)
* [Maven](doc/maven.md)
* [MS Teams](doc/ms-teams.md)
* [Password Manager](doc/pwd-mgmt.md)
* [Pip3](doc/pip3.md)
* [PM2](doc/pm2.md)
* [RDP Client](doc/rdp.md)
* [Redis](doc/redis.md)
* [Rsync](doc/rsync.md)
* [SSH Server](doc/ssh-server.md)
* [SSH Public Key Authentication](doc/ssh-pub-key-auth.md)
* [VPN](doc/vpn.md)
* [Yarn](doc/yarn.md)
* To-do List
* Reuse
* IDE

32
doc/pip3.md Normal file
View File

@ -0,0 +1,32 @@
# Setup Pip3
* update apt repository cache
```
sudo apt update
```
* check available Python version
```
python3 -V
```
* install Pip3 for Python 3
```
sudo apt install python3-venv python3-pip --no-install-recommends
```
* validate Pip3 version
```
pip3 --version
```
* extend PATH environment variable so that Pip3 is able to install packages locally to the user environment
```
env | grep PATH
export PATH="$PATH:/home/$USER/.local/bin"
env | grep PATH
```
# Links
[Install Pip3 & Pip2 on Debian 11/10/9](https://computingforgeeks.com/how-to-install-pip-2-pip-3-on-debian/)

5
doc/pip3.md.license Normal file
View File

@ -0,0 +1,5 @@
/*
* SPDX-FileCopyrightText: 2022 Software Ingenieur Begerad <swingbe.de>
*
* SPDX-License-Identifier: CC0-1.0
*/