Skip to content

Commit

Permalink
Comment about Python 3.9 support (#2327)
Browse files Browse the repository at this point in the history
  • Loading branch information
Randy Zwitch committed Nov 10, 2020
1 parent ece41b7 commit d948e14
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.md
Expand Up @@ -47,7 +47,7 @@
[Streamlit](https://streamlit.io/) is an open-source Python library that makes it easy to create and share beautiful, custom web apps for machine learning and data science.
In just a few minutes you can build and deploy powerful data apps - so let's get started!

1. Make sure that you have [Python 3.6](https://www.python.org/downloads/) or greater installed.
1. Make sure that you have [Python 3.6 - Python 3.8](https://www.python.org/downloads/) installed.
2. Install Streamlit using [PIP](https://pip.pypa.io/en/stable/installing/) and run the 'hello world' app:

```shell
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Expand Up @@ -5,7 +5,7 @@
Before you get started, you're going to need a few things:

- Your favorite IDE or text editor
- [Python 3.6 or later](https://www.python.org/downloads/)
- [Python 3.6 - 3.8](https://www.python.org/downloads/)
- [PIP](https://pip.pypa.io/en/stable/installing/)

If you haven't already, take a few minutes to read through [Main
Expand Down
11 changes: 11 additions & 0 deletions docs/troubleshooting/sanity-checks.md
Expand Up @@ -2,6 +2,17 @@

If you're having problems running your Streamlit app, here are a few things to try out.

## Check #0: Are you using a Streamlit-supported version of Python?

Streamlit will maintain backwards-compatibility with earlier Python versions as practical,
guaranteeing compatibility with _at least_ the last three minor versions of Python 3.

As new versions of Python are released, we will try to be compatible with the new version as soon
as possible, though frequently we are at the mercy of other Python packages to support these new versions as well.

Streamlit currently supports versions 3.6, 3.7 and 3.8 of Python. Python 3.9 support is currently on-hold as we
wait for [pyarrow to support Python 3.9](https://arrow.apache.org/docs/python/install.html#python-compatibility).

## Check #1: Is Streamlit running?

On a Mac or Linux machine, type this on the terminal:
Expand Down

0 comments on commit d948e14

Please sign in to comment.