Problem installing Numpy [closed]

1

Good morning guys, I was trying to install Numpy on this machine ... I ran the "conda install numpy" command and it worked fine ... but when I ran "pip install numpy", it returns that error.

    
asked by anonymous 24.05.2018 / 15:48

1 answer

0

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

1st: Using 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

    
24.05.2018 / 19:22