home-assistant.io/source/_faq/pip3.markdown
DubhAd 14048b15b0 Update to remove Python 3.4 reference (#4675)
Making FAQ more relevant by referencing just Python 3
2018-02-15 19:00:45 +01:00

22 lines
726 B
Markdown

---
layout: page
title: "pip3: command not found"
description: "pip3: command not found"
date: 2017-06-18 09:00
comments: false
sharing: true
footer: true
ha_category: Installation
---
This utility should have been installed as part of the Python 3 installation. Check if Python 3 is installed by running `python3 --version`. If it is not installed, [download it here](https://www.python.org/getit/).
If you are able to successfully run `python3 --version` but not `pip3`, install Home Assistant by running the following command instead:
```bash
$ python3 -m pip install homeassistant
```
On a Debian system, you can also install python3 by `sudo apt-get install python3`d and pip3 by `sudo apt-get install python3-pip`.