I installed Python with the intention of doing deep learning, Let's go! When I thought that there was no library, I got stuck in haste, so I posted a memorandum.
It ’s not limited to deep learning, I had to use an external library called NumPy to handle arrays and matrices, It cannot be used unless it is imported in the minimum configuration Python.
In such a case, you can install it with the following command.
% python -m pip install numpy
If there are other missing libraries, I think you can install them with this.
Recommended Posts