Highest Rated Comments


VortexKirito1 karma

Hey, I’m a beginner, and for the life of me I can’t figure out how to actually run the code I’m making. I’m using a textbook called “Python Crash Course.” and it’s had me download the Sublime Text text editor. So, I download it, I download Python 3, and then the book tells me to configure Sublime Text for Python 3. It says go to “Tools > Build System > New Build System” and then enter this:

{ “cmd”: [“/usr/local/bin/Python3”, “-u”, “$file”], }

I entered it, and that’s great, but after that I can’t figure out how to make the editor run that code I entered. Do you have any advice on how I can get this code to run, or maybe just another way I can configure the text editor to Python 3?

Edit: also, sorry this isn’t really a question towards you in particular, I’m just having trouble starting to learn how to code since I can’t figure out how to get the editor to go into Python.