-1

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:

enter image description here

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.

Marioanzas
  • 1,663
  • 2
  • 10
  • 33

1 Answers1

0

Try this:

conda install -c conda-forge numpy=1.15.4