Comments on: How to Install Jupyter Notebook on Ubuntu 16.04 https://www.rosehosting.com/blog/how-to-install-jupyter-on-an-ubuntu-16-04-vps/ Premium Linux Tutorials Since 2001 Fri, 09 Dec 2022 10:36:13 +0000 hourly 1 https://wordpress.org/?v=6.5.2 By: admin https://www.rosehosting.com/blog/how-to-install-jupyter-on-an-ubuntu-16-04-vps/#comment-48541 Thu, 14 Jan 2021 07:23:32 +0000 https://www.rosehosting.com/blog/?p=21395#comment-48541 In reply to Leman Kirme.

Can you share the details of the error?

]]>
By: Leman Kirme https://www.rosehosting.com/blog/how-to-install-jupyter-on-an-ubuntu-16-04-vps/#comment-48540 Wed, 13 Jan 2021 15:12:00 +0000 https://www.rosehosting.com/blog/?p=21395#comment-48540 after the command
jupyter notebook

we get this error

]]>
By: admin https://www.rosehosting.com/blog/how-to-install-jupyter-on-an-ubuntu-16-04-vps/#comment-48122 Sun, 08 Mar 2020 08:15:17 +0000 https://www.rosehosting.com/blog/?p=21395#comment-48122 In reply to bhanuteja bolisetti.

please re-check all of the steps of the tutorial

]]>
By: bhanuteja bolisetti https://www.rosehosting.com/blog/how-to-install-jupyter-on-an-ubuntu-16-04-vps/#comment-48121 Sat, 07 Mar 2020 14:44:51 +0000 https://www.rosehosting.com/blog/?p=21395#comment-48121 bhanuteja@bhanuteja-HP-Laptop-15g-br1xx:~$ sudo apt-get -y install ipython ipython-notebook
Reading package lists… Done
Building dependency tree
Reading state information… Done
Package ipython-notebook is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package ‘ipython-notebook’ has no installation candidate
and i ignored the above ipython thing and proceeded,but got this error when running jupyter notebook
bhanuteja@bhanuteja-HP-Laptop-15g-br1xx:~$ jupyter notebook
Error executing Jupyter command ‘notebook’: [Errno 2] No such file or directory
bhanuteja@bhanuteja-HP-Laptop-15g-br1xx:~$
what should i do.

]]>
By: admin https://www.rosehosting.com/blog/how-to-install-jupyter-on-an-ubuntu-16-04-vps/#comment-48102 Sun, 16 Feb 2020 07:59:45 +0000 https://www.rosehosting.com/blog/?p=21395#comment-48102 In reply to rahul.

Make sure that Jupyter Notebook is actually running on your server. By default, it should be running on port 8888.

You can run the following command to check this:

netstat -tnlp | grep 8888

]]>
By: rahul https://www.rosehosting.com/blog/how-to-install-jupyter-on-an-ubuntu-16-04-vps/#comment-48101 Sat, 15 Feb 2020 11:45:56 +0000 https://www.rosehosting.com/blog/?p=21395#comment-48101 When I run jupyter notebook and select the file the internal server error comes up…
What should I do?

]]>
By: admin https://www.rosehosting.com/blog/how-to-install-jupyter-on-an-ubuntu-16-04-vps/#comment-47515 Fri, 04 Jan 2019 12:09:15 +0000 https://www.rosehosting.com/blog/?p=21395#comment-47515 In reply to Bindeshwar.

Please try to upgrade pip and setuptools with the following command:
pip install --upgrade setuptools pip
or
pip3.5 install jupyter

]]>
By: Bindeshwar https://www.rosehosting.com/blog/how-to-install-jupyter-on-an-ubuntu-16-04-vps/#comment-47514 Thu, 03 Jan 2019 20:52:27 +0000 https://www.rosehosting.com/blog/?p=21395#comment-47514 I could not install
the error is

Exception:
Traceback (most recent call last):
File “/usr/lib/python3/dist-packages/pkg_resources.py”, line 2482, in _dep_map
return self.__dep_map
File “/usr/lib/python3/dist-packages/pkg_resources.py”, line 2344, in __getattr__
raise AttributeError(attr)
AttributeError: _DistInfoDistribution__dep_map

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File “/usr/lib/python3/dist-packages/pip/basecommand.py”, line 122, in main
status = self.run(options, args)
File “/usr/lib/python3/dist-packages/pip/commands/install.py”, line 278, in run
requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle)
File “/usr/lib/python3/dist-packages/pip/req.py”, line 1266, in prepare_files
req_to_install.extras):
File “/usr/lib/python3/dist-packages/pkg_resources.py”, line 2291, in requires
dm = self._dep_map
File “/usr/lib/python3/dist-packages/pkg_resources.py”, line 2484, in _dep_map
self.__dep_map = self._compute_dependencies()
File “/usr/lib/python3/dist-packages/pkg_resources.py”, line 2508, in _compute_dependencies
parsed = next(parse_requirements(distvers))
File “/usr/lib/python3/dist-packages/pkg_resources.py”, line 2605, in parse_requirements
line, p, specs = scan_list(VERSION,LINE_END,line,p,(1,2),”version spec”)
File “/usr/lib/python3/dist-packages/pkg_resources.py”, line 2573, in scan_list
raise ValueError(“Expected “+item_name+” in”,line,”at”,line[p:])
ValueError: (‘Expected version spec in’, ‘widgetsnbextension ~=3.4.0’, ‘at’, ‘ ~=3.4.0’)

]]>