###### 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

3. #Enable bash on windwos
```
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
```
4. #Install Ubuntu 18.04 LTS in Microsort Store

5. #Open Ubuntu 18.04 LTS

6. Open vscode and install python extension

7. Install Pylint in vscode with powershell

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