This commit is contained in:
Fabian Affolter 2017-06-18 18:57:34 +02:00 committed by Paulus Schoutsen
parent 5d240e1898
commit e37fb6f094
7 changed files with 113 additions and 0 deletions

18
source/_faq/pip.markdown Normal file
View file

@ -0,0 +1,18 @@
---
layout: page
title: "pip"
description: "No module named pip"
date: 2017-06-18 09:00
sidebar: true
comments: false
sharing: true
footer: true
ha_category: Installation
---
[Pip](https://pip.pypa.io/en/stable/) should come bundled with the latest Python 3 but is omitted by some distributions. If you are unable to run `python3 -m pip --version` you can install `pip` by [downloading the installer](https://bootstrap.pypa.io/get-pip.py) and running it with Python 3:
```bash
$ python3 get-pip.py
```