> For the complete documentation index, see [llms.txt](https://meirian.gitbook.io/python/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://meirian.gitbook.io/python/getting-started/access.md).

# Accessing Python

These workshops will use Python 3.7 inside the Jupyter Notebook.

## **Install Python**

Check out the [Python\_Installation.md](https://github.com/resbaz/Intro_Python_Nov2017/blob/master/Python_Installation.md) instruction file.

## IDE vs Text Editors vs Jupyter Notebook

While we will be learning in the Jupyter environment, you may find this a bit heavy for your day-to-day coding life. There are a number of light-weight text editors and Integrative Development Environments (IDEs) freely available on the internet.&#x20;

### **What's the difference**

The primary difference is that IDEs allow you write and run your code all within the same program. On the other hand, text editors only allow you to write the code - to run them you have to use the command line. Either of these options can be more appropriate for you, depending on how you want to use them.

### IDEs

* Spyder. This comes installed with the Anaconda package, and you should be able to find it in your system's programs list after installation.
* [Pycharm](https://www.jetbrains.com/pycharm/). This one has a free community-edition license, but anybody working on research which could be patented, beware! The pycharm owners dislike the free version being used on for-profit projects, and the licensing reflects this.
* [VScode](https://code.visualstudio.com/docs/python/python-tutorial); Microsoft lightweight editor with a couple of extensions for interactive coding.

### Text Editors

* [Atom](https://atom.io/). Free. No ads. Allows Git/Github integration.
* [Sublime Text](https://www.sublimetext.com/). Unlimited free license. Occasional pop-up ads.
