Stella
Stella

Reputation: 1868

Installation error with ipython on macbook

I am trying to install ipython on my macbook using command $ sudo easy_install ipython

Before that I have installed brew.

But when i install ipython command, i am getting the following error:

error: Setup script exited with error in ipython setup command: Invalid environment marker: sys_platform == "darwin" and platform_python_implementation == "CPython"

Could someone help me how to solve this? I need to develop project quickly.

Thank you in Advance!

Upvotes: 7

Views: 2003

Answers (2)

M. Gara
M. Gara

Reputation: 1078

I just had the same issue, solved it by upgrading pip, try:

pip install --upgrade pip

then retry installing ipython:

pip install ipython

Upvotes: 3

Alex Polymath
Alex Polymath

Reputation: 185

I installed ipython via pip and everything works great.

sudo pip install ipython

To install pip I used easy_install

sudo easy_install pip

There are more specific information on Tensorflow

Upvotes: 0

Related Questions