Skip to content

Commit 01ac852

Browse files
committed
Update docs after changing to python 3.8
README.md and INSTALL.md still mention the old version.
1 parent 3d673b9 commit 01ac852

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

INSTALL.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Once Anaconda (or Miniconda) is installed, run the following command to update t
2222

2323
$ conda update -n base -c defaults conda
2424

25-
> **Note**: if you don't like Anaconda for some reason, then you can install Python 3 and use pip to install the required libraries manually (this is not recommended, unless you really know what you are doing). I recommend using Python 3.7, since some libs don't support Python 3.8 or 3.9 yet.
25+
> **Note**: if you don't like Anaconda for some reason, then you can install Python 3 and use pip to install the required libraries manually (this is not recommended, unless you really know what you are doing). I recommend using Python 3.8, since some libs don't support Python 3.9 or 3.10 yet.
2626
2727

2828
## Install the GPU Driver and Libraries

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ If you need further instructions, read the [detailed installation instructions](
5757

5858
**Which Python version should I use?**
5959

60-
I recommend Python 3.7. If you follow the installation instructions above, that's the version you will get. Most code will work with other versions of Python 3, but some libraries do not support Python 3.8 or 3.9 yet, which is why I recommend Python 3.7.
60+
I recommend Python 3.8. If you follow the installation instructions above, that's the version you will get. Most code will work with other versions of Python 3, but some libraries do not support Python 3.9 or 3.10 yet, which is why I recommend Python 3.8.
6161

6262
**I'm getting an error when I call `load_housing_data()`**
6363

6464
Make sure you call `fetch_housing_data()` *before* you call `load_housing_data()`. If you're getting an HTTP error, make sure you're running the exact same code as in the notebook (copy/paste it if needed). If the problem persists, please check your network configuration.
6565

6666
**I'm getting an SSL error on MacOSX**
6767

68-
You probably need to install the SSL certificates (see this [StackOverflow question](https://stackoverflow.com/questions/27835619/urllib-and-ssl-certificate-verify-failed-error)). If you downloaded Python from the official website, then run `/Applications/Python\ 3.7/Install\ Certificates.command` in a terminal (change `3.7` to whatever version you installed). If you installed Python using MacPorts, run `sudo port install curl-ca-bundle` in a terminal.
68+
You probably need to install the SSL certificates (see this [StackOverflow question](https://stackoverflow.com/questions/27835619/urllib-and-ssl-certificate-verify-failed-error)). If you downloaded Python from the official website, then run `/Applications/Python\ 3.8/Install\ Certificates.command` in a terminal (change `3.8` to whatever version you installed). If you installed Python using MacPorts, run `sudo port install curl-ca-bundle` in a terminal.
6969

7070
**I've installed this project locally. How do I update it to the latest version?**
7171

0 commit comments

Comments
 (0)