get virtual env in windows with ssl and poetry
install pip
1
2
3
```bash
python -m pip install --upgrade pip
```
Trouble shooting
if you get the error:
1
`Package 'python3-pip' has no installation candidate`
run:
1
2
3
```bash
sudo apt-get update
```
And then
1
2
3
```bash
sudo apt-get install python3-pip
```