From page 13:
On Python 3.7, you can install the libraries with pip by running these commands inside a Python venv using Visual Studio Code
pip3 install numpy==1.19.5
pip3 install matplotlib==3.2.2
pip3 install seaborn==0.11.1
With Windows 11 I faced these errors when trying to install Numpy 1.19.5.
- Microsoft Visual C++ 14.0 was required. After installing C++ I retried installing numpy to run into…
- “TypeError: CCompiler_spawn() got an unexpected keyword argument ‘env’”. I updated the setuptools but that did not help because I got the same error. So I tried Numpy using pip install numpy==1.19.5 --no-binary=:all: --no-build but I got
- the error Running cythonize failed so I installed Cython but that did not help because I got the same error after retrying to install numpy
I gave up troubleshooting and decided to install the latest versions of the packages and see what happens when I try to run the code in the book.
Should I try another route? Any suggestions for installing the packages in a Windows 11 environment? Should I expect to run into any issues later in the book because I don’t have the specific version for the packages?
Regards,
roadbike