How to install ipython laptop locally?

I would like to use ipython notebook. When I enter ipython notebook at the command line, I get:

 Could not start notebook. Please install ipython-notebook 

The problem is that I do not have root privileges on the system (I use Ubuntu). I think that there is work with the virtual environment, but I don’t know how to use it. Can someone help me with this? What sequence of commands should I execute in order to be able to use the ipython laptop in my browser?

+4
source share
9 answers

After running pip install ipython[notebook] you need to deactivate virtualenv and then reactivate it.

In other words:

 $ deactivate $ workon my-virtualenv (my-virtualenv)$ ipython notebook & 
+8
source
 sudo apt-get install ipython-notebook 
+7
source

Enthought Canopy can handle all IPython related installation problems for you. It also installs itself in its own virtual environment along with many other useful tools like nose and numpy. It opens laptops in its own IDE, so you can easily switch between your laptop, IPython interpreter, and other Python scripts. I use it with Ubuntu 12.04 and still have had good success.

+2
source

Why not use pip as explained in white papers?

http://ipython.org/notebook.html

 pip install "ipython[notebook]" 
+2
source

pip install --upgrade ipython [notebook]

which fix the problem for me .... it seems like -upgrade to fix some kind of addiction or something else ....

+2
source

Take a look at adamdklein's post . You will need a step-by-step guide on how to configure ipython and other mathematical properties in virtualenv (using Ubuntu).

0
source

Install an Ipython laptop using the following command

 pip install jupyter 

Or install Anaconda . The Ipython laptop is included in the Anaconda package.

Link:

Install Jupyter Notebook

0
source

Ubuntu now wants to not support the Python notebook. You just need to install a Jupyter notebook instead of a Python notebook, where you can also access Python. The following is a command to install a Jupyter laptop.

 sudo apt-get install Jupyter-notebook 
0
source

Run this command in terminal:

pip install ipython[notebook]

0
source

Source: https://habr.com/ru/post/1492729/


All Articles