ipythone
Title
Question
I have installed python 3.5.2 but i dont know how to get ipython 5.1.0
when i press ctrl+alt+t it shows nothing and in pyhton when pressing ipthon3 at prompt and Enter it says 'ipython3' is not defined.
Python-3.4.3 Getting-started-with-IPython 01-02 min 0-10 sec
Answers:
You can install the ipython package system wide by using the system package manager, for example for Ubuntu you can use the command:
sudo apt-get install -y ipython3
or
sudo apt-get install -y ipython
In case you are already using pip to install python packages, you can also run pip install ipython
Login to add comment