9

I have python 2.7 and python3 installed on my machine along with ipython. I wanna use Ipython with python3 by default its taking python 2.7. Whats the Process to use ipython with python 3.

Anurag
  • 180
  • 1
  • 12
  • See also http://stackoverflow.com/questions/21374675/ipython3-for-mac-osx. `pip3 install ipython[all]`. – mbauman Oct 25 '16 at 15:33

2 Answers2

14

Why don't you try this:

ipython3
U2EF1
  • 12,907
  • 3
  • 35
  • 37
  • 1
    I tried this its not working it says The program 'ipython3' is currently not installed. You can install it by typing: sudo apt-get install ipython3 I did the install its working fine now thanks. – Anurag Jan 14 '14 at 08:08
1

I had to apt-get install ipython3, on Linux Mint, which is similar to Debian and Ubuntu.

If you're on a Redhat-like OS, you may have something similar for yum.

dstromberg
  • 6,954
  • 1
  • 26
  • 27