Problem when installing Numpy

Asked

Viewed 388 times

1

Good morning guys, I was trying to install Numpy in this machine... I ran the command "Conda install numpy" ai worked...but when I ran "Pip install numpy", it returns this error.

inserir a descrição da imagem aqui

1 answer

0

Apparently, based on the error you get, you are missing install the ipykernel package, playing on google found two solutions:

1st: Using the Pip:

First make sure your Pip is in version 9.0>>

python2 -m pip --version

Then use the commands:

python2 -m pip install ipykernel
python2 -m ipykernel install --user

2nd: Using the virtual environment and Conda

conda create -n ipykernel_py2 python=2 ipykernel
source activate ipykernel_py2    # On Windows, remove the word 'source'
python -m ipykernel install --user

SOURCE

Browser other questions tagged

You are not signed in. Login or sign up in order to post.