1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

Closes #148: Fix Debian/Ubuntu python package name

This commit is contained in:
thatmattlove
2021-07-03 21:58:58 -07:00
parent 78571edb4e
commit c1e1d7ca41
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ If you're confident upgrading your system's version of Python won't break your s
<TabItem value="debian">
```shell-session
$ sudo apt install -y python3.6-dev python3-pip
$ sudo apt install -y python3-dev python3-pip
```
</TabItem>

View File

@@ -285,7 +285,7 @@ yarn_brew() {
}
python_apt() {
apt-get install -y python3.6-dev python3-pip >/dev/null
apt-get install -y python3-dev python3-pip >/dev/null
sleep 1
python_post $?
}