Merge pull request #267 from RushabhVasani/master
Solved numpy version error.
This commit is contained in:
commit
f71775cd51
2 changed files with 7 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ Using the central authentication system (PAM), this works everywhere you would o
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
Howdy is currently available for Debian/Ubuntu, Arch Linux and Fedora. If you’re interested in packaging Howdy for your distro, don’t hesitate to open an issue.
|
Howdy is currently available and packaged for Debian/Ubuntu, Arch Linux, Fedora and openSUSE. If you’re interested in packaging Howdy for your distro, don’t hesitate to open an issue.
|
||||||
|
|
||||||
**Note:** The build of dlib can hang on 100% for over a minute, give it time.
|
**Note:** The build of dlib can hang on 100% for over a minute, give it time.
|
||||||
|
|
||||||
|
|
|
||||||
6
debian/postinst
vendored
6
debian/postinst
vendored
|
|
@ -109,6 +109,12 @@ log("Upgrading pip to the latest version")
|
||||||
# Update pip
|
# Update pip
|
||||||
handleStatus(sc(["pip3", "install", "--upgrade", "pip"]))
|
handleStatus(sc(["pip3", "install", "--upgrade", "pip"]))
|
||||||
|
|
||||||
|
|
||||||
|
log("Upgrading numpy to the lateset version")
|
||||||
|
|
||||||
|
# Update numpy
|
||||||
|
handleStatus(subprocess.call(["pip3", "install", "--upgrade", "numpy"]))
|
||||||
|
|
||||||
log("Downloading and unpacking data files")
|
log("Downloading and unpacking data files")
|
||||||
|
|
||||||
# Run the bash script to download and unpack the .dat files needed
|
# Run the bash script to download and unpack the .dat files needed
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue