OSX set up Python (Anaconda): Difference between revisions
From CommunityData
(→Test your Python install: fixed typo) |
(version and link bump) |
||
Line 3: | Line 3: | ||
We're going to be installing Python using a collection of software that includes Python that, as a collection, is called '''Anaconda'''. Anaconda includes the Python programming language and a bunch of different pieces of software that are useful for data science and analysis. Although the collection includes all free software, it is put together by a commercial company called '''Continuum Analytics'''. | We're going to be installing Python using a collection of software that includes Python that, as a collection, is called '''Anaconda'''. Anaconda includes the Python programming language and a bunch of different pieces of software that are useful for data science and analysis. Although the collection includes all free software, it is put together by a commercial company called '''Continuum Analytics'''. | ||
<font size="+1">Download and install the file [ | <font size="+1">Download and install the file [https://www.anaconda.com/distribution/#download-section found here].</font> | ||
=== Install notes === | === Install notes === | ||
Line 27: | Line 27: | ||
and hit enter. You should see something like | and hit enter. You should see something like | ||
<pre> | <pre> | ||
Python 3. | Python 3.7.2 (default, Oct 8 2014, 10:45:20) | ||
[GCC 4.9.1] on macosx | [GCC 4.9.1] on macosx | ||
Type "help", "copyright", "credits" or "license" for more information. | Type "help", "copyright", "credits" or "license" for more information. | ||
Line 54: | Line 54: | ||
If the installation above fails, you can follow these instructions instead: | If the installation above fails, you can follow these instructions instead: | ||
* Download and install the [http://continuum.io/downloads Anaconda] that includes Python 3. | * Download and install the [http://continuum.io/downloads Anaconda] that includes Python 3.7: | ||
*# First, visit the [http://continuum.io/downloads Anaconda download page]. | *# First, visit the [http://continuum.io/downloads Anaconda download page]. | ||
*# Click the blue text to the right side of the penguin logo that says "'''I WANT PYTHON 3. | *# Click the blue text to the right side of the penguin logo that says "'''I WANT PYTHON 3.7'''". | ||
*# Click on top button on the right side of the same box under the text "'''CHOOSE YOUR INSTALLER'''". The button should say something like '''MAC OS X 64-bit Python 3. | *# Click on top button on the right side of the same box under the text "'''CHOOSE YOUR INSTALLER'''". The button should say something like '''MAC OS X 64-bit Python 3.7 Graphical Installer'''. | ||
# Once the (~275 MB) installer package is downloaded, double click the .pkg file and follow the instructions on the screen. Install Anaconda in your home folder. | # Once the (~275 MB) installer package is downloaded, double click the .pkg file and follow the instructions on the screen. Install Anaconda in your home folder. | ||
[[Category:CDSW]] | [[Category:CDSW]] |
Revision as of 02:24, 31 March 2019
Download and install Python
We're going to be installing Python using a collection of software that includes Python that, as a collection, is called Anaconda. Anaconda includes the Python programming language and a bunch of different pieces of software that are useful for data science and analysis. Although the collection includes all free software, it is put together by a commercial company called Continuum Analytics.
Download and install the file found here.
Install notes
- If you get stuck during the install process, ask a mentor for help. These instructions may also be helpful.
- Anaconda may leave a shortcut called "Launcher" on your desktop. You can delete this link: we won't be using it in the workshop.
Test your Python install
Now that you have installed everything you need, we will make sure we can start a Terminal and run Python from the command line.
- Start up a Terminal. You can find the Terminal application through Spotlight, or navigate to Applications/Utilities/Terminal.
This Terminal contains something called a command prompt. This command prompt is another way of navigating your computer and running programs -- just textually instead of graphically. We are going to be running Python and Python scripts from this command prompt. - Test your Python install at the command prompt. Type
python
and hit enter. You should see something like
Python 3.7.2 (default, Oct 8 2014, 10:45:20) [GCC 4.9.1] on macosx Type "help", "copyright", "credits" or "license" for more information. >>>
- You just started Python! The
>>>
indicates that you are at a new type of prompt -- a Python prompt. The command prompt lets you navigate your computer and run programs, and the Python prompt lets you write and run Python code interactively.
- If the Python version number (3.4.2 in the example above) is not a number between 3.0 and 3.4 (ignoring the number after the second dot), tell a staff member.
- You just started Python! The
- To exit the Python prompt, type
exit()
and press Enter. This will take you back to the OS X command prompt.
Success!
You have tested your Python installation.
Alternative Installation Instructions
If the installation above fails, you can follow these instructions instead:
- Download and install the Anaconda that includes Python 3.7:
- First, visit the Anaconda download page.
- Click the blue text to the right side of the penguin logo that says "I WANT PYTHON 3.7".
- Click on top button on the right side of the same box under the text "CHOOSE YOUR INSTALLER". The button should say something like MAC OS X 64-bit Python 3.7 Graphical Installer.
- Once the (~275 MB) installer package is downloaded, double click the .pkg file and follow the instructions on the screen. Install Anaconda in your home folder.