This time, I installed Anaconda and prepared the development environment for python3.7.
The Anaconda environment was installed with reference to the following. Reference URL
Start Anaconda Prompt and create a virtual environment
$conda create --name DL python=3.7
$conda activate DL
For the time being jupyterlab, numpy, matplotlib
$pip install jupyterlab
$pip install numpy
$pip install matplotlib
$jupyter lab
Recommended Posts