Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
Update pip unsupported error message (#2852)
Browse files Browse the repository at this point in the history
  • Loading branch information
TobyRoseman authored Dec 13, 2019
1 parent 0375222 commit a134fb4
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions src/unsupported_python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,30 @@ class InstallEngine(install):
def run(self):
msg = ("""
==================================================================================
ERROR
TURICREATE ERROR
If you see this message, pip install did not find an available binary package
for your system. Supported platforms are:
for your system.
Supported Platforms:
* macOS 10.12+ x86_64.
* Linux x86_64 (including WSL on Windows 10).
* Linux x86_64 (including WSL on Windows 10).
* macOS 10.12+ x86_64.
* Python 2.7, 3.5, or 3.6.
* Python 3.7 macOS only.
Support Python Versions:
* 2.7
* 3.5
* 3.6
* 3.7
Other possible causes of this error are:
* Outdated pip version (try `pip install -U pip`).
Another possible cause of this error is an outdated pip version. Try:
`pip install -U pip`
==================================================================================
""")
sys.stderr.write(msg)
sys.exit(1)
Expand Down

0 comments on commit a134fb4

Please sign in to comment.