So in my Anaconda environment I have two installed versions of numpy
. Just for illustration purposes, if I type conda list
in the Anaconda Prompt, I have the following:
By default, my Jupyter Notebook uses version 1.20.2
. I have checked this by using:
print(np.__version__)
1.20.2
My question is: how can I specifically tell Jupyter Notebook to import version 1.15.4
instead of the default 1.20.2
?
Note: I have tried to adapt to the answers shown here and here, but with no luck.