• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here:Home » Jupyter Notebook Tutorial : Part 1

By Abhishek Ghosh September 17, 2017 6:27 am Updated on December 30, 2017

Jupyter Notebook Tutorial : Part 1

Advertisement

Jupyter is a kind of acronym to mean Julia, Python, and R. Jupyter runs code in many programming languages and Python 3.3 or greater, or Python 2.7 need for installing the Jupyter Notebook. We can install Jupyter with PIP but using the Anaconda distribution to install Python and Jupyter is what is officially recommended. This article is how to install Jupyter Notebook tutorial as part 1 of the series. If you are not used with Anaconda, you need read our previous guide on how to install Anaconda on Ubuntu 16.04 LTS.

If you are Windows 10 user, then follow our Install Python, pip on Windows 10 From Bash guide.

 

Jupyter Notebook Tutorial

 

For Anaconda, the command to install at present is :

Advertisement

---

Vim
1
conda install -c anaconda jupyter

We can easily install with PIP as alternative to Anaconda :

Vim
1
2
3
4
5
# python 3
pip3 install --upgrade pip
pip3 install jupyter
# Python2
pip install jupyter

As for MacOSX, Pip is a package manager, virtualenv is an environment manager whereas Conda is both. It is practical to avoid Anaconda with Homebrew. For Mac, we often need to add sudo -H to work with Python. If you run :

Vim
1
ls -al /usr/local/lib/ | grep "python"

You’ll get all the directories which will indicate the all possible versions of Python installed on your machine :

Vim
1
2
3
drwxr-xr-x    3 abhishekghosh  admin      102 Nov 11  2014 python2.7
drwxr-xr-x    3 abhishekghosh  admin      102 Nov 11  2014 python3.3
drwxr-xr-x    3 abhishekghosh  admin      102 May 21  2015 python3.4

You can update all the installed packages :

Vim
1
sudo -H pip freeze --local | grep -v '^-e' | cut -d = -f 1  | xargs -n1 sudo -H pip install -U

Actually for Mac OS X you are installing Jupyter Notebook for Python 3 with this command :

Vim
1
sudo -H pip3 install jupyter

Python is fucking complicated on Mac and NEVER uninstall any version without asking someone reliable on sites like StackExchange or Apple Community. There are hard coded reference of Python package with version number in Mac OS X binary.

Obviously the thing will get installed automatically, there is no big manual work behind it. To open :

Vim
1
jupyter notebook

Then go to :

Vim
1
http://localhost:8888

Essentially it will open a tree, asking initially for a token which will be available on CLI :

Jupyter Notebook Tutorial - Part 1

 

How To Jupyter Notebook Tutorial For Ubuntu 16.04 LTS or CentOS Server

 

Similar. For example, for Python 2.7 and Ubuntu 16.04 LTS :

Vim
1
2
3
4
5
6
7
8
apt-get -y install python2.7
apt-get -y install python-pip
apt-get -y install python-dev
apt-get -y install ipython ipython-notebook
pip install --upgrade pip
pip install jupyter
# jupyter notebook
jupyter notebook --ip='*'

With jupyter notebook --ip='*' we are forcing to listen on all interfaces.

Tagged With anaconda vim jupyter , customize jupyter notebook , customize jupyter window , how to create visual effects in jupyter notebook , jupyter facial recognition tutorial , JUPYTER NOTEBOOK AND TERADATA , paperuri:(babd90622d2b1dcc4d0c1c71fdf71e5b)
Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to Jupyter Notebook Tutorial : Part 1

  • Nginx WordPress Installation Guide (All Steps)

    This is a Full Nginx WordPress Installation Guide With All the Steps, Including Some Optimization and Setup Which is Compatible With WordPress DOT ORG Example Settings For Nginx.

  • Install Jupyter Notebook and TensorFlow On Ubuntu 18.04 Server

    Here is How To Install Jupyter Notebook and TensorFlow On Ubuntu 18.04 Server. It is probably easy to install Anaconda for Python packages.

  • Jupyter Notebook Tutorial : Part 2

    In Part 2 of our Jupyter Notebook Tutorial series, we will learn installing packages in Jupyter, importing data, plotting inline etc works.

  • Install Python, pip on Windows 10 From Bash (Like Ubuntu)

    Here is an Example of How to Use Windows 10 Like Ubuntu With Step by Step Guide to Install Python, pip on Windows 10 From Bash Like SSH.

performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • Hybrid Multi-Cloud Environments Are Becoming UbiquitousJuly 12, 2023
  • Data Protection on the InternetJuly 12, 2023
  • Basics of BJT TransistorJuly 11, 2023
  • What is Confidential Computing?July 11, 2023
  • How a MOSFET WorksJuly 10, 2023
PC users can consult Corrine Chorney for Security.

Want to know more about us?

Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy