@@ -21,10 +21,10 @@ For example, if you are using macOS and Python 3.x
2121you would download the bash script
2222whose name contains the strings "Miniconda3" and "MacOSX",
2323navigate to the download location,
24- and execute the installation as follows:
24+ and execute the installation as follows (taking Intel Macs as an example) :
2525
2626``` bash
27- sh Miniconda3-latest -MacOSX-x86_64.sh -b
27+ sh Miniconda3-py39_4.12.0 -MacOSX-x86_64.sh -b
2828```
2929
3030
@@ -50,7 +50,7 @@ You should be able to create
5050a new environment as follows:
5151
5252``` bash
53- conda create --name d2l python=3.8 -y
53+ conda create --name d2l python=3.9 -y
5454```
5555
5656
@@ -179,20 +179,20 @@ pip uninstall mxnet
179179We now need to find out what version of CUDA you have installed.
180180You can check this by running ` nvcc --version `
181181or ` cat /usr/local/cuda/version.txt ` .
182- Assume that you have installed CUDA 10.1 ,
182+ Assume that you have installed CUDA 10.2 ,
183183then you can install with the following command:
184184
185185``` bash
186186# For Windows users
187- pip install mxnet-cu101 ==1.7.0 -f https://dist.mxnet.io/python
187+ pip install mxnet-cu102 ==1.7.0 -f https://dist.mxnet.io/python
188188
189189# For Linux and macOS users
190- pip install mxnet-cu101 ==1.7.0
190+ pip install mxnet-cu102 ==1.7.0
191191```
192192
193193
194- You may change the last digits according to your CUDA version, e.g., ` cu100 ` for
195- CUDA 10.0 and ` cu90 ` for CUDA 9.0.
194+ You may change the last digits according to your CUDA version, e.g., ` cu101 ` for
195+ CUDA 10.1 and ` cu90 ` for CUDA 9.0.
196196:end_tab:
197197
198198
0 commit comments