How to Setup Sublime Text 3 for Python in Windows? Last Updated : 01 Jun, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report Written by a Google engineer sublime text is a cross-platform IDE developed in C++ and Python. It has basic built-in support for Python. Sublime text is fast and you can customize this editor as per your need to create a full-fledged Python development environment. You can install packages such as debugging, auto-completion, code linting, etc. There are also various packages for scientific development, Django, Flask, and so on. Downloading and Installation Sublime Text 3 can be downloaded from its official site sublimetext.com. To install sublime text 3 on Windows, go through How to install Sublime Text 3 in Windows? Setting up Environment Variable Step 1: Click the Advanced system settings link. Step 2: Click Environment Variables. In the section System Variables, find the PATH environment variable and select it. Click Edit. If the PATH environment variable does not exist, click New. Step 3: In the Edit System Variable (or New System Variable) window, specify the value of the PATH environment variable. Click OK. Close all remaining windows by clicking OK. Working on Sublime Text3 Step 1: Create a new file and save it with extension .py for example save it as checkversion.py. Now, Go to Tools -> Build System -> Python then type on your checkversion.py This is showing the version of python. This means python is successfully installed and added in Environment Variable. Step 2: Add new build system on your Sublime Tools -> Build System -> New Build System and make sure that the new build system has this following command Python3 { "cmd":["C:/Users/<user>/AppData/Local/Programs/Python/Python37-32/python.exe", "-u", "$file"], "file_regex": "^[ ]File \"(...?)\", line ([0-9]*)", "selector": "source.python" } Select your new system build newPython3 and re-run the checkversion.py and now it should be using Python 3 ALL Done… Now create any file and save it with .py extension Now you can run your Python code by using CTRL+SHIFT+B and choose from the 2 options. Comment More infoAdvertise with us Next Article How to Install Sublime Text 3 in Windows? M MohdArsalan Follow Improve Article Tags : Python Web Technologies How To Practice Tags : python Similar Reads How to Setup Sublime Text 3 for Perl in Windows? Perl is a general-purpose, high level interpreted and dynamic programming language. Perl was originally developed for text processing like extracting the required information from a specified text file and for converting the text file into a different form. Perl programs can be written on any plain 2 min read How to Setup Sublime Text 3 for Java in Windows? Java is one of the most popular and widely-used object-oriented programming languages. Java syntax is similar to C/C++. But Java does not provide low-level programming functionalities like pointers. Also, Java codes are always written in the form of classes and objects. The Java codes are first comp 2 min read How to Install Sublime Text 3 in Windows? Written by a Google engineer sublime text is a cross-platform IDE developed in C++ and Python. It has basic built-in support for Python. Sublime text is fast and you can customize this editor as per your need to create a full-fledged Python development environment. You can install packages such as d 2 min read How to set up Setuptools for Python on Windows? Setuptools is a package development process library that is designed to make packaging Python projects easier by boosting the standard distutils (distribution utilities) library of Python. It includes Python package and module definitionsIt includes distribution package metadataIt includes test hook 2 min read How to use CMD for Python in Windows 10 Want to run Python programs directly from the Command Prompt? This guide will walk you through how to run Python in CMD, configure the environment, and troubleshoot common issues. By mastering these steps, youâll streamline your development process and save time during testing.Steps to Use CMD for P 4 min read How to setup Python, PyEnv & Poetry on Windows Setting up a robust Python development environment on Windows involves installing Python itself, managing multiple versions with PyEnv, and handling dependencies and project environments with Poetry. This guide will walk you through each step to get your system ready for efficient and organized Pyth 3 min read Like