Run python using sublimeREPL Last Updated : 07 Jun, 2024 Summarize Comments Improve Suggest changes Share Like Article Like Report SublimeREPL extends the capabilities of Sublime Text by allowing you to run Python scripts and interact with a Python REPL directly within the editor. With this setup, you can streamline your development workflow, test code snippets quickly, and see the results in real time without leaving Sublime Text. In this article, I will guide you through the process of setting up and using SublimeREPL to run Python code directly within sublime text. Installing SublimeGo to the SublimeText website.Click on Download For Windows.After that, it will start downing sublime in your computerAfter finishing all the setup and completely installing Sublime on your computer.Open SublimeĀ Installing SublimeREPLClick on tools.Click on Install Package ControlIt will start installing package controlAfter package control install sucessfullyClick on PreferencesAfter that click on Package ControlPopup window will appear. Type SublimeREPL (as u can see in the blow image)Installation process will be startedAfter the installation process had doneGo to Tools->SublimeREPL->Python->Python - Run current file as you can see in the image below:After clicking on that one New Tab will be appear (like shown in the below pic)Congrats! Enter your input you will get your desire output.Ā Key press shortcut to run PYTHON using SublimeREPLGo to PreferencesClick on Key BindingsA new window will appear.[ { "keys": ["ctrl+enter"], "command": "run_existing_window_command", "args": { "id": "repl_python_run", "file": "config/Python/Main.sublime-menu" }}]Paste the above code in the console or in the window that was appear before.Save (ctrl+s) it as .sublime-keymap extension.Close the window Press ctrl+enter (control+enter) in your keyboard.Your Programs will be execute. Comment More infoAdvertise with us Next Article Jupyter Notebook Extension in Visual Studio Code B blockcipher Follow Improve Article Tags : Python python Practice Tags : pythonpython Similar Reads Scraping dynamic content using Python-Scrapy Let's suppose we are reading some content from a source like websites, and we want to save that data on our device. We can copy the data in a notebook or notepad for reuse in future jobs. This way, we used scraping(if we didn't have a font or database, the form brute removes the data in documents, s 4 min read How to Setup Sublime Text 3 for Python 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 Run Python File In Vscode Visual Studio Code (VSCode) is a popular and versatile code editor that supports Python development with various features and extensions. In this article, we will see how to run Python files in VsCode.Below is the step-by-step procedure by which we can run the basic Python Script in VScode:Step 1: I 2 min read Open and Run Python Files in the Terminal The Linux terminal offers a powerful environment for working with Python files, providing developers with efficient ways to open, edit, and run Python scripts directly from the command line. Open and Run Python Files in the Linux TerminalIn this article, we'll explore various techniques and commands 2 min read Jupyter Notebook Extension in Visual Studio Code In this article, we will see how to use Jupyter Notebook in Visual Studio code. Jupyter Notebook has grown into a popular IDE choice. With the availability of additional kernels in addition to IPython, Jupyter Notebooks can also support Java, R, Julia and other popular programming languages ââbeside 4 min read How to run an .ipynb Jupyter Notebook from terminal? Let's see how to run Notebook in Jupyter from a terminal in this article, but first, let's get a sense of what these terms mean. Python: Python is a versatile and high-level programming language known for its readability and extensive libraries, making it a popular choice for web development, data a 2 min read Like