###### tags: `colde_garage_python_2019` # Setup environment for Python ## Windows 1. Install vscode https://code.visualstudio.com/ 2. Install python 3.7 in Microsort Store ![](https://i.imgur.com/gXOOn11.png) 3. #Enable bash on windwos ``` Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux ``` 4. #Install Ubuntu 18.04 LTS in Microsort Store ![](https://i.imgur.com/Kfcx9Bq.png) 5. #Open Ubuntu 18.04 LTS ![](https://i.imgur.com/uNHeHIK.png) 6. Open vscode and install python extension ![](https://i.imgur.com/ROXLEfw.png) 7. Install Pylint in vscode with powershell ![](https://i.imgur.com/KcAOrUG.png) 8. Open terminal and type the following command ``` python3 --version pip3 --version ``` If everything is installed properly, terminal will show the version. ## linux (ubuntu 18.04 LTS) 1. Open terminal and type the following command ``` sudo apt-get update sudo apt-get install python3 sudo apt-get install python3-pip pip3 install pylint ``` 2. Open terminal and type the following command ``` python3 --version pip3 --version ``` If everything is installed properly, terminal will show the version. ## mac 1. install vscode https://code.visualstudio.com/ 2. install python IDE https://www.python.org/downloads/ 3. Open terminal and type the following command ``` python3 --version pip3 --version ``` If everything is installed properly, terminal will show the version. Otherwise, install from brew