1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +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 $?
}