Installing Anaconda and Python This is a brief guide on how to install Anaconda and Python on your PC. We recommend having it installed on your own machine to follow along programming tasks in lectures and for assignments and labs. Anaconda will setup Python for programming and an editor (Spyder) to help write those programs. Anaconda (Python) installation for MacOS COMP2420, Semester 1, 2020. The following outlines the steps to install Python, Jupiter Lab and the packages required for COMP2420 in Semester 1, 2020.
- See Full List On Docs.anaconda.com
- How To Successfully Install Anaconda On A Mac (and Actually ...
- How To Install Anaconda On Mac
- Python Releases For Mac OS X | Python.org
There is no need to install Anaconda again. Conda, the package manager for Anaconda, fully supports separated environments. The easiest way to create an environment for Python 2.7 is to do. Conda create -n python2 python=2.7 anaconda This will create an environment named python2 that contains the Python 2.7 version of Anaconda. You can activate. The official home of the Python Programming Language. Python Releases for Mac OS X. Latest Python 3 Release - Python 3.9.0; Latest Python 2 Release - Python 2.7.18. đ In this Video I am going to show How to Down and install Anaconda (Python distribution) on your Mac OS X operating system. So what is Anaconda?
Anaconda is a package manager, an environment manager, and Python distribution that contains a collection of many open source packages. An installation of Anaconda comes with many packages such as numpy, scikit-learn, scipy, and pandas preinstalled and is also the recommended way to install Jupyter Notebooks. This tutorial will include:
With that, letâs get started
Graphical Installation of Anaconda
Installing Anaconda using a graphical installer is probably the easiest way to install Anaconda.
1 â Go to the Anaconda Website and choose a Python 3.x graphical installer (A) or a Python 2.x graphical installer (B). If you arenât sure which Python version you want to install, choose Python 3. Do not choose both.
2 - Locate your download and double click it.
3 - Click on Continue
4 - Click on Continue
5 - Note that when you install Anaconda, it modifies your bash profile with either anaconda3 or anaconda2 depending on what Python version you choose. This can important for later. Click on Continue.
6 - Click on Continue to get the License Agreement to appear.
You will need to read and click Agree to the license agreement before clicking on Continue again.
7 - Click on Install
8 - Youâll be prompted to give your password, which is usually the one that you also use to unlock your Mac when you start it up. After you enter your password, click on Install Software.
9 - Click on Continue. You can install Microsoft Visual Studio Code if you like, but it is not required. It is an Integrated Development Environment. You can learn about Python Integrated Development Environments here.
10 - You should get a screen saying the installation has completed. Close the installer and move it to the trash.
Test your Installation
1 - Open a new terminal on your Mac. You can do this by clicking on the Spotlight magnifying glass at the top right of the screen, type âterminalâ then click on the terminal icon. Now, type the following command into your terminal
If you had chosen a Python 3 version of Anaconda (like the one in the image above), you will get an output similar to above.
See Full List On Docs.anaconda.com
If you had chosen a Python 2 version of Anaconda, you should get a similar output to the one below.
2 - Another good way to test your installation is to try and open a Jupyter Notebook. You can type the command below in your terminal to open a Jupyter Notebook. If the command fails, chances are that Anaconda isnât in your path. See the next section on Common Issues.
The image below shows a Jupyter Notebook in action. Jupyter notebooks contain both code and rich text elements, such as figures, links, and equations. You can learn more about Jupyter Notebooks here.
Common Issues
The image below shows step 5 of the Graphical Installation of Anaconda from earlier in this tutorial. Notice that when you install Anaconda, it modifies your .bash_profile to put Anaconda in your path.
The problem is that sometimes people have installed multiple different versions of Anaconda and consequently they have multiple versions of Anaconda in their path. For example, say a person needs Python 2 and they install a Python 2 version of Anaconda, That same person then finds that they need Python 3, so they install a Python 3 version of Anaconda. The problem is that you really only need 1 version of Anaconda. A lot of people think that is that if you install a Python 2 version of Anaconda, you are stuck with Python 2. Anaconda is also an environment manager and makes it very easy to go back and forth between Python 2 and 3 on a single installation of Anaconda (learn more here).
To see if you have more than 1 version of anaconda installed and to fix it if you do, letâs first look at your .bash_profile.
1 - Open a new terminal and go to your home directory. You can do this by using the command below.
2 - Use the cat
command to see the contents of the hidden file .bash_profile. Type the following command into your terminal.
You should only see one anaconda version added to your path as you see below, this isnât a problem for you. Move to the conclusion of the tutorial.
If you see more than one Anaconda version, proceed to step 3.
3 - To remove the old version of Anaconda from your .bash_profile use the command below to edit the file using the nano editor.
From the image above, notice there is a newer Version of Anaconda. Simply remove the older version of Anaconda. Type control + X to exit out of nano.
Save changes by typing Y.
How To Successfully Install Anaconda On A Mac (and Actually ...
Close that terminal and open a new one. You should be okay now. Keep in mind that this isnât the only issue you can have when installing Anaconda, but it is a very common issue.
Conclusion
This tutorial provided a quick guide to install Anaconda on Mac as well as dealing with a common installation issue. A graphical install of Anaconda isnât the only way to install Anaconda as you can Install Anaconda by a Command Line Installer, but it is the easiest. If you arenât sure what to do after installing Anaconda, here are a few things you can do:
How To Install Anaconda On Mac
- If you would like to learn more about Anaconda, you can learn about more here.
- If you want to start coding on your local computer, you can check out the the Jupyter Notebook Definitive Guide to learn how to code in Jupyter Notebooks.
- If you want to learn Python, you can check out DataCamp's Intro to Python for Data Science course.
Python Releases For Mac OS X | Python.org
If you any questions or thoughts on the tutorial, feel free to reach out in the comments below or through Twitter.