Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 1.04 KB

README-setup-python.md

File metadata and controls

19 lines (10 loc) · 1.04 KB

Install Python via Anaconda

Download Anaconda with Python 3.x - Anaconda includes many useful Python libraries like pandas, numpy, and matplotlib for data shaping, analysis, and visualization. It also includes jupyterlab, a handy browser-based editor.

Test your installation by opening Anaconda Prompt:

caption

Type conda and hit enter, to show that Anaconda is recognized:

caption

Python code is not interpreted at the Anaconda Prompt. Most people type python code in a text editor and save as .py file types. However, you can write python code at the Anaconda Prompt by typing python to enter into python's specific command prompt beginning as >>>:

caption

After testing some python code, exit the prompt by typing ctrl + Z.

Learn more Python in the official Python Tutorial.