Anaconda Individual Edition is the world’s most popular Python distribution platform with over 20 million users worldwide. You can trust in our long-term commitment to supporting the Anaconda open-source ecosystem, the platform of choice for Python data science. Spyder vs Xcode: What are the differences? Spyder: The Scientific Python Development Environment.It is a powerful scientific environment written in Python, for Python, and designed by and for scientists, engineers and data analysts; Xcode: The complete toolset for building great apps.The Xcode IDE is at the center of the Apple development experience.
Anaconda Individual Edition contains condaand Anaconda Navigator,as well as Python and hundreds of scientificpackages. When you installed Anaconda,you installed all these too.
Conda works on your command line interface such asAnaconda Prompt on Windows and terminal on macOS and Linux.
Navigator is a desktop graphical user interface thatallows you to launch applications and easily manageconda packages, environments, and channels withoutusing command-line commands.
Spyder Python For Mac
You can try both conda and Navigatorto see which is right for you to manage your packages andenvironments. You can even switch between them, and the work youdo with one can be viewed in the other.
Try this simple programming exercise, with Navigator and thecommand line, to help you decide which approach is right for you.
When you’re done, see What’s next?.
Your first Python program: Hello, Anaconda!¶
Use Anaconda Navigator to launch an application. Then, create and runa simple Python program with Spyder and Jupyter Notebook.
Open Navigator¶
Choose the instructions for your operating system.
- Windows.
- macOS.
- Linux.
Windows
From the Start menu, click the Anaconda Navigator desktop app.
macOS
Open Launchpad, then click the Anaconda Navigator icon.
Linux
Open a terminal window and type anaconda-navigator
.
Run Python in Spyder IDE (integrated development environment)¶
Tip
Navigator’s Home screen displays several applications for you tochoose from. For more information, see links at the bottom of this page.
On Navigator’s Home tab, in the Applications pane on the right, scrollto the Spyder tile and click the Install button to install Spyder.
Note
If you already have Spyder installed, you can jump right to theLaunch step.
Launch Spyder by clicking Spyder’s Launch button.
In the new file on the left, delete any placeholder text, then type orcopy/paste
print('HelloAnaconda')
.In the top menu, click File - Save As and name your new program
hello.py
.Run your new program by clicking the triangle Run button.
You can see your program’s output in the bottom right Console pane.
Close Spyder¶
From Spyder’s top menu bar, select Spyder - Quit Spyder (In macOS,select Python - Quit Spyder).
Run Python in a Jupyter Notebook¶
On Navigator’s Home tab, in the Applications pane on the right, scrollto the Jupyter Notebook tile and click the Install button to install JupyterNotebook.
Note
If you already have Jupyter Notebook installed, you can jump right tothe Launch step.
Launch Jupyter Notebook by clicking Jupyter Notebook’s Launch button.
This will launch a new browser window (or a new tab) showing theNotebook Dashboard.
On the top of the right hand side, there is a dropdown menu labeled “New”.Create a new Notebook with the Python version you installed.
Rename your Notebook. Either click on the current name and edit it orfind rename under File in the top menu bar.You can name it to whatever you’d like, but for this example we’ll useMyFirstAnacondaNotebook.
In the first line of the Notebook, type or copy/paste
print('HelloAnaconda')
.Save your Notebook by either clicking the save and checkpointicon or select File - Save and Checkpoint in the top menu.
Run your new program by clicking the Run button or selectingCell - Run All from the top menu.
Close Jupyter Notebook¶
- From Jupyter Notebooks top menu bar, select File - Close and Halt.
- Click the Quit button at the upper right of the Notebook Dashboardand close the window or tab.
Close Navigator¶
From Navigator’s top menu bar, select Anaconda Navigator - QuitAnaconda-Navigator.

Spyder Python Ide For Mac
Write a Python program using Anaconda Prompt or terminal¶
Open Anaconda Prompt¶
Choose the instructions for your operating system.
- Windows.
- macOS.
- Linux.
Windows
From the Start menu, search for and open “Anaconda Prompt”:
macOS
Open Launchpad, then click the terminal icon.
Linux
Open a terminal window.
Start Python¶
At Anaconda Prompt (terminal on Linux or macOS), type python
and press Enter.
Download Spyder Python For Mac
The >>>
means you are in Python.
Write a Python program¶
At the >>>
, type print('HelloAnaconda!')
and press Enter.
When you press enter, your program runs. The words “Hello Anaconda!” print tothe screen. You’re programming in Python!
Exit Python¶
On Windows, press CTRL-Z and press Enter. On macOS or Linux typeexit()
and press Enter.
Optional: Launch Spyder or Jupyter Notebook from the command line¶
- At the Anaconda Prompt (terminal on Linux or macOS), type
spyder
and press Enter.Spyder should start up just like it did when you launched itfrom Anaconda Navigator. - Close Spyder the same way you did in the previous exercise.
- At the Anaconda Prompt (terminal on Linux or macOS), type
jupyter-notebook
and press Enter.
Jupyter Notebook should start up just like it did when you launchedit from Anaconda Navigator. Close it the same way you did in theprevious exercise.
What’s next?¶
Using Navigator¶
Using conda¶
Using Spyder¶
Using Jupyter Notebook¶
Links to IDE documentation¶
