0% found this document useful (0 votes)
47 views1 page

Integrated Development Environment Python

The document discusses the Integrated Development Environment (IDE) Jupyter Notebook, which is part of the Anaconda tool collection. It is an application that makes writing, testing, and debugging code easier. While many tools are available, Anaconda performs every task needed and is free. IDEs provide different levels of intelligence assistance. The goal is to choose an IDE that helps write clean, efficient code quickly. The document recommends using Anaconda version 4.4.0 to match examples. It then explains how to work with the Jupyter Notebook IDE by managing code in repositories like folders to modify, run, and add examples.

Uploaded by

Moises Pedraza
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
47 views1 page

Integrated Development Environment Python

The document discusses the Integrated Development Environment (IDE) Jupyter Notebook, which is part of the Anaconda tool collection. It is an application that makes writing, testing, and debugging code easier. While many tools are available, Anaconda performs every task needed and is free. IDEs provide different levels of intelligence assistance. The goal is to choose an IDE that helps write clean, efficient code quickly. The document recommends using Anaconda version 4.4.0 to match examples. It then explains how to work with the Jupyter Notebook IDE by managing code in repositories like folders to modify, run, and add examples.

Uploaded by

Moises Pedraza
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Integrated Development Environment (IDE) named Jupyter Notebook that appears as part of the

Anaconda tool collection. An IDE is a special kind of application that makes writing, testing, and
debugging code significantly easier.

A vast number of other tools are available for you to use when writing Python applications. This book
doesn’t tell you much about them because Anaconda performs every task needed and it’s readily
available free of charge. However, as your skills increase, you might find the features in other tools such
as Komodo Edit.

IDEs vary greatly in the level and kind of intelligence they provide, which is why so many IDEs exist. You
may find the level of help obtained from one IDE to be insufficient to your needs, but another IDE hovers
over you like a mother hen. Every developer has different needs and, therefore, different IDE
requirements. The point is to obtain an IDE that helps you write clean, efficient code quickly and easily.

As mentioned in the previous section, Anaconda doesn’t come with your Python installation. You can
follow the essential book examples using IDLE if you’d rather, but you really do want to try Anaconda if
possible. With this in mind, the following sections help you obtain and install Anaconda on the three
major platforms supported by this book.

This book uses Anaconda version 4.4.0, which supports Python 3.6.2. If you don’t use this version of
Anaconda, you may find that some examples don’t work well and that what you see on your screen
doesn’t match what you see in the book, even if you’re working with Windows. The screenshots in this
book are taken using a Windows 64-bit system, but they should be very close to what you see on other
platforms when you use Anaconda 4.4.0.

https://repo.anaconda.com/archive/

 download archive 

The following sections show how to work with Jupyter Notebook, the name of the Anaconda IDE.  These
sections emphasize the capability to manage application code, including importing the downloadable
source and exporting your amazing applications to show friends.

The code you create and use in this book will reside in a repository on your hard drive. Think of a
repository as a kind of filing cabinet where you put your code. Notebook opens a drawer, takes out the
folder, and shows the code to you. You can modify it, run individual examples within the folder, add new
examples, and simply interact with your code in a natural manner. The following sections get you
started with Notebook so that you can see how this whole repository concept works.

You might also like