can't install ipython via pip on OSX High Sierra
See original GitHub issueI’m trying to install ipython via pip on OSX 10.13.4 but I’m getting the following error:
bash-3.2$ sudo -H pip install ipython
[...]
matplotlib 1.3.1 requires nose, which is not installed.
matplotlib 1.3.1 requires tornado, which is not installed.
prompt-toolkit 1.0.15 has requirement six>=1.9.0, but you'll have six 1.4.1 which is incompatible.
Is this due to an inconsistent set of dependencies in ipython’s setup_requires?
Python version: 2.7.10 pip version: 10.0.1 OSX version: 10.13.4
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:11 (2 by maintainers)
Top Results From Across the Web
python - unable to install ipython on mac - Stack Overflow
Try this command: python -m IPython.
Read more >Installing IPython
You can manually download IPython from GitHub or PyPI. To install one of these versions, unpack it and run the following from the...
Read more >I am trying to install pip on terminal and I always get this error
install --user are not in the default command search path. If you need those, add ~/Library/Python/VERSION/bin to your $PATH .
Read more >Installing Python Pip on Mac OSX - YouTube
A quick video tutorial on installing pip on Mac OSX. ... try restarting your device. Your browser can't play this video.
Read more >How to install Python on Mac OS - YouTube
all FREE Courses - https://automationstepbystep.com/How to install Python on MacOSStep by Step for BeginnersToday we will learn:1.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I faced same issue while trying to
pip install ipython
and was able to get ipython installed after executingsudo easy_install ipython
After that I ran
ipython
from command line and got what I expected.@tlatorre-uchicago thanks for the response. I was able to install jupyter without problem, but I wasn’t able to get around the ipython installation issue.