I have said this before and I will say it again. After scouring the net, this is by far the best tutorial if you need to set up a Python environment with Sublime Text 3. If you happen to be reading this, take note and watch the video:)
We getting to the end of 2019 started off with Corey's tutorials 4 months ago after wandering the www for since begging of the year and I attest to your proclamation I am past my formative stages of programming and building my first app for a client Long Live Mr. Corey M. Schafer
What makes a teacher interesting? She or He knows the material AND knows how to present it. That takes time and effort. Repetition is important without making it all boring. Corey is one of the great teachers for this material.
14:47 In windows split shortcut is : Alt+Shift+2 to split in 2 columns Alt+Shift+3 to split in 3 columns Alt+Shift+4 to split in 4 columns Alt+Shift+8 to split in 2 rows Alt+Shift+9 to split in 3 rows Alt+Shift+5 to split in grid of 4 or View>Layout>(select option) It is for Sublime Text 3
Thanks Corey, your excellent tutorials got me flying with python in no time some years ago. I've created a lot of valuable applications for my work with it since. I had followed your setup for atom and used it for years until a disc corruption killed it today. Of course, atom now no longer available. Now trying sublime and following your lead again. Thanks again.
Oh my god, sublime text is so good. I cant stand how slow PyCharm is, and I needed a little bit more functionality than just using the IDLE editor. I appreciate this video
I work in Operations consulting with a lot of ERPs and WMS' and decided to learn python as it was a really versatile language. These videos, in conjunction with the book "Learning Python", have helped along tremendously. Thank you so much!
For those asking about the missing Anaconda SublimeText settings GitHub file: 1. Access your Anaconda User settings in Sublime using the method the professor showed 2. I personally typed out the code that he shows in the video (the code isn't too long to type out). Just make sure you type out everything correctly 3. Make sure to save and restart your instance of Sublime Text The file is most likely missing due to recent updates within his GitHub files, who knows.
As of today 27 August, 2018, I decided to take up coding as a hobby. After a bit of reading I decided on Python. I searched the web high and low for a solid tutorial on how to get started, to no avail. I am a Cyber Security guy by trade, and figured coding would be similar to pushing patches in BigFix. I was definitely wrong. I cannot wait to get this new hobby up and going, as well as, diving deeper into your videos. Thank you!!
⇨ADDITIONAL INFO: How To View Side Bar Folders in Sublime Text Corey Schafer shows in this Video (at Timecode 12:19) the installation of a Package called "Side Bar Enhancements" which he describes in the video using the display of FOLDERS in the Sidebar. WHAT IS NOT DESCRIBED CLEARLY is that in order to see Folders in the Sublime Text Editor you need to: 1. Click on VIEW MENU > Side Bar > View Side Bar. 2. Click on FILE > OPEN... then click on a File Folder (not a individual File), then click on OPEN. OR OPTIONALLY... Drag and drop the selected folder on to the "Sublime Text" window (method used in the video at Timecode 2:15 by Corey Schafer) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ★ RECOMMENDATION: Corey Schafer should place this information in the Video Description (as comments often get buried) so that others new to Sublime Text whom are following Video - step by step - will see the same thing as shown in the video. Hope this helps someone.
Thanks Corey. I love Sublime Text3 and haven't been using it because I didn't really know how to set it up as a newbie. This really helps. Now I don't have to dink around with PyCharm or Visual Studio Code. I have nothing against those tools, but I'd much rather use Sublime Text while I'm learning and just trying things out. I really appreciate this tutorial and you thorough mastery of the subject matter. Kudos, dude.
If anyone is getting a "[WinError 2] The system cannot find the file specified" issue, this comment from Corey was buried in the comments. I spent a good hour and a bit trying to figure it out. You might have to change the "\" in your file path in your command prompt to "/" when you put it in your path in your *.sublime-build file. This is what he commented: Hi there. The PATH to Python is different in Windows than it is on a Unix-like machine. Try opening your command prompt and running Python, and then run the following code: import sys print(sys.executable) It should show the PATH you need to put into your build system instead of the current "/usr/local/bin/python3.5" I hope that helps!
For windows this worked for me: /usr/local/bin/python3.5 > C:\\Program Files\\Python39\\python.exe and adjust install path to relevant version location.
I did that and it didnt work. The error message is now "no build system". Do i have to mess with the "-u" that comes after the "/usr/local/bin/python3.5" that we replaced?
Thank you so much. Very clear. There was a problem with the server tonight and I couldn't install any packages, but fortunately someone posted an old link to a stable url on a forum and I was able to add it to my user profile, temporarly. Now I can start learning Python (I know C and JS) to better serve my patrons at my library - I'm a librarian. Cheers!
I spent hours on this problem as well. It turns out that you just have to change "python_interpreter" to "python" in Anaconda User-settings. Make sure to save and restart.
if you're different Python 3.x version, be sure to update the .sublime-build file to include the path to your version number. I am using python 3.6, not 3.5
I got in my windows, where python installed "cmd": ["C:\\Users\\YourNameUser\\AppData\\Local\\Programs\\Python\\Python36-32\\python.exe", "-u", "$file"]
Great video, thank you! Also, at 7:06 the material theme read-me was appended below the predawn message. Also 14:50 the Windows shortcut is Alt + Shift + 2
"How to setup a development environment" Step1:change the wallpaper to kali linux dragon Step2:change colour of cmd output text to green Step3:enable dark mode on all apps. Hehe
Great videos, this one in particular has kept me from giving up on python programming. The Anaconda plugin you recommended has allowed me to understand the spacing issue much better..was pulling my hair out because my trial code kept failing, now I know why..THANK YOU.
Hi Cory, I just want to let you know that your Sublime text settings on your Git hub page is completely different to the one that you are using. Is there any possible way to change that?
Thank you Corey. This vid was helpful for me to setup my Sublime environment to use the Anaconda Python install instead of my default version on the Mac. Thanks for posting.
Thanks for the video, it got me started on the path of setting up Python in Sublime. However, since you use a Mac and I use a Windows PC there were a few difference not covered. These differences also seem to be hard to find on the official sites. I personally finally found what I was looking for in the comments of your previous Python post. "Gurpreet Singh First, install anaconda for python 3.5 and in sublime text, tools, build systems, make new build system and save this to file and make the filename python.sublime-build { "cmd": ["C:\\Program Files\\Anaconda3\\python.exe", "-u", "$file"], "file_regex": "^[ ]File \"(...?)\", line ([0-9]*)", "selector": "source.python" } it will definitely work. Also directory can be different in your system. So to check python directory interpreter open cmd (window) [at the root] c drive level and type "where python.exe" (without the quotes)." Personally I installed Python 2.7 and 3.6 (64). Following the above video I made two files and saved them to my "C:\Users\SMurphy\AppData\Roaming\Sublime Text 3\Packages\User" folder and named them Python27.sublime-build and Python36-64.sublime-build respectively. All but the path was the same as Gurpreet Singh's example. { "cmd": ["C:\\Program Files\\Python\\Python36\\python.exe", "-u", "$file"], "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", "quiet": true } I hope this give Windows users one more place to chance on an answer, and thank you Cory for your help.
Make sure you have watched the video above from at least this point, th-cam.com/video/xFciV6Ew5r4/w-d-xo.html I am assuming you already have a version of python installed, if not do so. Open a command prompt, (Start, cmd, Enter), go to your c root (cd\), type where python.exe, use the path for the version of Python you need if you have more than one. You may see a path like C:\Program Files\Python\Python36\python.exe, yet when putting the path into the file you need to make all the \ to \\, so in your file it will look like C:\\Program Files\\Python\\Python36\\python.exe I hope this helps.
Found a very useful video, i followed him and used / instead of \ or \\, works now. He also sets up interactive enviromvent th-cam.com/video/rIl0mmYSPIc/w-d-xo.html
Hi, First of all, thank you for your very nice videos. If you make your own build systems for example for python 2.7 and 3.6 on windows, remember to escape with 2 \ to make it work. { "cmd": ["C:\\Users\\YourName\\AppData\\Local\\Programs\\Python\\Python36-32\\python.exe", "-u", "$ file"], "file_regex": "^ [] * File \" (... *?) \ ", line ([0-9] *)", "quiet": true }
Corey , you are the best ... always wanted a theme that you are using and i got it configured today .... Thanks a lot of sharing, keep up the great work!! :)
@Beyond Oblivion I also tried the tweaks and was successful, here are my moves 1. Just install Anaconda package ,open the Default Anaconda package settings>go to "anaconda_linting": true, Check for the 'true', 'true' only will work. Then restart the sublime and just check whether the Global/Default settings are working or not. To do this you can verify with any code you already have. You have to get the Dot thing(Linting) with default settings. 2. Now open the User Anaconda settings and copy the below code and save it. Saving is important. { "auto_formatting": true, "autoformat_ignore": [ ], "pep8_ignore": [ "E501" ], "anaconda_linting": true, "anaconda_linter_underlines": false, "anaconda_linter_mark_style": "none", "display_signatures": false, "disable_anaconda_completion": true, "python_interpreter": "python" } 3. This should do the work.
I've never actually managed to get any of these packages to work. Even in 2 different laptops, 1 Linux Mint & 1 on Win 10. SidebarEnhancement doesn't give me any other options, BracketHighlighter doesn't show anything and the anaconda package always produces an error at startup and then causes ST3 to not respond once I sort out the initial error. Really annoyed as this is 2 different systems now that none of these packages work on.
The best video for Sublime Text. I recently thought about switching to VS Code but as I really like Sublime Text I was looking for some enhancements and after setting up wit this I just love the design and packages!
Your tutorial is very well-made. I like how you explain things with extra tips/good-practices in simple words. I can understand what you say without subtitles . Nice work!
my program is not running.can anyone help please?when i build everytime it shows below text. C:\Program Files\Python36-32\python.exe: can't find '__main__' module in '' [Finished in 0.4s]
I believe that is the error you receive if you are trying to run the code without saving the file. You have to save it as a .py file before running the code.
Your videos are fantastic! Thank you for putting everything in the description and for being so thorough. You do a great job going from the big picture reasoning for doing something down to the details of execution.
Error trying to parse settings: Expected character in Packages/User/Preferences.sublime-settings:52:1 getting this error after pasting the code in user seetings
Did you fix this? I get this error whenever I add a package or run Sublime but my Sublime works perfectly fine and all the files are fine so I don't know what's happening.
It happened to me too, but it was an error on my part...maybe you are doing the same. when he said to install Predawn, he first clicked install packages -> then Predawn.(which i did) but for all the packages after that all i was doing was typing the package name directly in the command palette, i had forgot to select install package first from command palette before searching for the package. figured it out after 10 minutes. All packages are visible now. Hope this helps.
@@imop285 In Corey's personal settings, Acaconda "python_interpreter" is set to a different location. you don't need to set the interpreter at all. just go to 'anconda user settings' and simply delete the whole ' "python_interpreter": "/usr/local/bin/python3" ' Then it should work fine. It did for me. if it dosen't work for you, delete the whole 'user settings' and save it and restart sublime. It should work fine. and then you can customize your own settings according to your needs. let me know if it worked...
@@imop285 and you don't necessarily need to register it. It just gives a popup time to time telling you register but that's it. Mine is also unregistered.
Have you watched my previous video on Sublime Build Systems? It's basically the same process as that video, but you would just use the location of Python 3.6 instead of Python 3.5
I am getting this error process can not start a new anaconda JsonServer in the operating system because: Anaconda can not spawn a new process with your current configured python interpreter(python) Make sure your interpreter is a valid binary and is in your PATH or use an absolute path to it, for example: C://Python27//python.exe I get this error whenever I launch sublime text 3 and because of this I cant use anaconda and when i write something e.g print(x) it does not give results but instead goes to the other line I think its problem with the code you gave on your github page. please reply fast
Thank you very much for this video! It was very helpful and helped me understand how to get Sublime set up and ready to use! Helpful also to know the various preference settings and addon packages! :)
In the video, at 17:33, anaconda linting provides ball next to for loop. I wonder why it does not appear in my sublime. any idea? Also, the auto-formatting does not work with error "Autoformatting failed, buffer not changed"
Loved this tutorial. Since seeing a random TH-cam video by Corey Schafer, I wanted my system to work in a similar fashion. The only thing I can't get to work as he does is the 'linter' is it? The helpful white dot in the gutter indicating an error and the more specific information at the bottom of the page - it's irritating me no end! Still, I'm subscribed to the channel and will be working my way through these videos.
I have said this before and I will say it again. After scouring the net, this is by far the best tutorial if you need to set up a Python environment with Sublime Text 3. If you happen to be reading this, take note and watch the video:)
Thanks, Drew!
Thanks for this video. I am completely newbie and setting up text editors and IDE have become a daunting task for me.@@coreyms
Haven't watched it yet but I believe you!
Agree 100%
We getting to the end of 2019 started off with Corey's tutorials 4 months ago after wandering the www for since begging of the year and I attest to your proclamation I am past my formative stages of programming and building my first app for a client Long Live Mr. Corey M. Schafer
What makes a teacher interesting? She or He knows the material AND knows how to present it. That takes time and effort. Repetition is important without making it all boring. Corey is one of the great teachers for this material.
Thanks!
14:47
In windows split shortcut is :
Alt+Shift+2 to split in 2 columns
Alt+Shift+3 to split in 3 columns
Alt+Shift+4 to split in 4 columns
Alt+Shift+8 to split in 2 rows
Alt+Shift+9 to split in 3 rows
Alt+Shift+5 to split in grid of 4
or
View>Layout>(select option)
It is for Sublime Text 3
Thank you so much dear :)
how do you undo it?
@@omogbemeiyere6475 alt+shift+1
thank you
Bless you :))))
3.5 years later...this is still this best tutorial on Sublime Text. Thanks!
Thanks Corey, your excellent tutorials got me flying with python in no time some years ago. I've created a lot of valuable applications for my work with it since. I had followed your setup for atom and used it for years until a disc corruption killed it today. Of course, atom now no longer available. Now trying sublime and following your lead again. Thanks again.
anything i've searched about python, you had a valuable course about that in your channel, thank you.
Oh my god, sublime text is so good. I cant stand how slow PyCharm is, and I needed a little bit more functionality than just using the IDLE editor. I appreciate this video
spittin facts
use vim if you want best editor and which is fast too
I work in Operations consulting with a lot of ERPs and WMS' and decided to learn python as it was a really versatile language. These videos, in conjunction with the book "Learning Python", have helped along tremendously. Thank you so much!
For windows split screen mode is Alt+Shift+2 or View, Layout, Columns: 2
edit: im talking about this part 14:47
Thanks, was looking for that:)
It's Cntl+Shift+2
What a great explanation! Now I understand a lot of things about text editors and not only for Sublime. Thank you so much, Corey!
For those asking about the missing Anaconda SublimeText settings GitHub file:
1. Access your Anaconda User settings in Sublime using the method the professor showed
2. I personally typed out the code that he shows in the video (the code isn't too long to type out). Just make sure you type out everything correctly
3. Make sure to save and restart your instance of Sublime Text
The file is most likely missing due to recent updates within his GitHub files, who knows.
{
"auto_formatting": true,
"autoformat_ignore":
[
"E309",
"E501"
],
"pep8_ignore":
[
"E309",
"E501"
],
"anaconda_linter_underlines": false,
"anaconda_linter_mark_style": "none",
"display_signatures": false,
"disable_anaconda_completion": true
}
@@RemziKaykc Thanks!
@@RemziKaykc Thank you so much you're a hero!
Corey is the first person to appear for any of my programming TH-cam searches
Just found your videos today Corey (Nov. 23, 2017). Best thing that ever happened for my Python learning! Thank You!
Marianna theme with pure black backround is what I opted for. Beautiful theme!
As of today 27 August, 2018, I decided to take up coding as a hobby. After a bit of reading I decided on Python. I searched the web high and low for a solid tutorial on how to get started, to no avail. I am a Cyber Security guy by trade, and figured coding would be similar to pushing patches in BigFix. I was definitely wrong. I cannot wait to get this new hobby up and going, as well as, diving deeper into your videos. Thank you!!
Glad to have you aboard! Programming can be frustrating at times, but if you stick with it then it is definitely rewarding (and fun) in the long run.
How did python go for you Tyler?
Must have channel for everyone working in python and linux.
⇨ADDITIONAL INFO: How To View Side Bar Folders in Sublime Text
Corey Schafer shows in this Video (at Timecode 12:19) the installation of a Package called "Side Bar Enhancements" which he describes in the video using the display of FOLDERS in the Sidebar.
WHAT IS NOT DESCRIBED CLEARLY is that in order to see Folders in the Sublime Text Editor you need to:
1. Click on VIEW MENU > Side Bar > View Side Bar.
2. Click on FILE > OPEN... then click on a File Folder (not a individual File), then click on OPEN.
OR OPTIONALLY...
Drag and drop the selected folder on to the "Sublime Text" window (method used in the video at Timecode 2:15 by Corey Schafer)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
★ RECOMMENDATION: Corey Schafer should place this information in the Video Description (as comments often get buried) so that others new to Sublime Text whom are following Video - step by step - will see the same thing as shown in the video.
Hope this helps someone.
Thanks Corey. I love Sublime Text3 and haven't been using it because I didn't really know how to set it up as a newbie. This really helps. Now I don't have to dink around with PyCharm or Visual Studio Code. I have nothing against those tools, but I'd much rather use Sublime Text while I'm learning and just trying things out. I really appreciate this tutorial and you thorough mastery of the subject matter. Kudos, dude.
If anyone is getting a "[WinError 2] The system cannot find the file specified" issue, this comment from Corey was buried in the comments. I spent a good hour and a bit trying to figure it out. You might have to change the "\" in your file path in your command prompt to "/" when you put it in your path in your *.sublime-build file. This is what he commented:
Hi there. The PATH to Python is different in Windows than it is on a Unix-like machine. Try opening your command prompt and running Python, and then run the following code:
import sys
print(sys.executable)
It should show the PATH you need to put into your build system instead of the current "/usr/local/bin/python3.5"
I hope that helps!
my hero
For windows this worked for me: /usr/local/bin/python3.5 > C:\\Program Files\\Python39\\python.exe and adjust install path to relevant version location.
I did that and it didnt work. The error message is now "no build system". Do i have to mess with the "-u" that comes after the "/usr/local/bin/python3.5" that we replaced?
Thank you so much. Very clear. There was a problem with the server tonight and I couldn't install any packages, but fortunately someone posted an old link to a stable url on a forum and I was able to add it to my user profile, temporarly. Now I can start learning Python (I know C and JS) to better serve my patrons at my library - I'm a librarian. Cheers!
Immediately subscribed your channel.
Really crisp and to the point videos.
Absolutely loving it.
I'm glad I've found your channel, once I got a job mate, I'll give something back, I owe you.
Bloody awesome video, mate!
4 years later.... still useful. Sidebar Enhancement. very nice.
I just went to your github but I can't find the Anaconda sublime settings anymore
I hereby admit that I used sublime text for years and had no idea that you can build and run your code with it ☝️
I know its 3 years later but,
following your setings, at 17:27 my sublime wont highlight any errors.
Any idea?
I spent hours on this problem as well. It turns out that you just have to change "python_interpreter" to "python" in Anaconda User-settings. Make sure to save and restart.
I have watched several videos and I must say this video is the best! This helps a lot! Thank you!
if you're different Python 3.x version, be sure to update the .sublime-build file to include the path to your version number. I am using python 3.6, not 3.5
how do you do that?
Thanks, that cleared an error
yes, how do you do that?
I got in my windows, where python installed "cmd": ["C:\\Users\\YourNameUser\\AppData\\Local\\Programs\\Python\\Python36-32\\python.exe", "-u", "$file"]
could you explain more where you paste this code and what its purpose is? Thanks
really great job. I use sublime for a while. Recently I restarted python programming and using sublime for it is a real help.
So, suggested packages are:
* Predawn (color scheme)
* Material Theme
* BracketHighlighter
* SideBarEnhancements
* Anaconda
Great video, thank you! Also, at 7:06 the material theme read-me was appended below the predawn message. Also 14:50 the Windows shortcut is Alt + Shift + 2
"How to setup a development environment"
Step1:change the wallpaper to kali linux dragon
Step2:change colour of cmd output text to green
Step3:enable dark mode on all apps.
Hehe
“I’m in”
Great videos, this one in particular has kept me from giving up on python programming. The Anaconda plugin you recommended has allowed me to understand the spacing issue much better..was pulling my hair out because my trial code kept failing, now I know why..THANK YOU.
Awesome. Glad to hear you're sticking with it!
Hi Cory, I just want to let you know that your Sublime text settings on your Git hub page is completely different to the one that you are using.
Is there any possible way to change that?
Thank you Corey. This vid was helpful for me to setup my Sublime environment to use the Anaconda Python install instead of my default version on the Mac. Thanks for posting.
Anaconda Sublime Text Settings file that is missing in the GitHub:
{
"auto_formatting": true,
"autoformat_ignore":
[
"E309",
"E501"
],
"pep8_ignore":
[
"E309",
"E501"
],
"anaconda_linter_underlines": false,
"anaconda_linter_mark_style": "none",
"display_signatures": false,
"disable_anaconda_completion": true
}
Thanks
thank you!
Everything you need to know about python development environment in sublime text.
Awesome video (Y)
Thanks for the video, it got me started on the path of setting up Python in Sublime. However, since you use a Mac and I use a Windows PC there were a few difference not covered. These differences also seem to be hard to find on the official sites. I personally finally found what I was looking for in the comments of your previous Python post.
"Gurpreet Singh
First, install anaconda for python 3.5 and in sublime text, tools, build systems, make new build system and save this to file and make the filename python.sublime-build
{
"cmd": ["C:\\Program Files\\Anaconda3\\python.exe", "-u", "$file"],
"file_regex": "^[ ]File \"(...?)\", line ([0-9]*)",
"selector": "source.python"
}
it will definitely work.
Also directory can be different in your system. So to check python directory interpreter open cmd (window) [at the root] c drive level and type "where python.exe" (without the quotes)."
Personally I installed Python 2.7 and 3.6 (64). Following the above video I made two files and saved them to my "C:\Users\SMurphy\AppData\Roaming\Sublime Text 3\Packages\User" folder and named them Python27.sublime-build and Python36-64.sublime-build respectively. All but the path was the same as Gurpreet Singh's example.
{
"cmd": ["C:\\Program Files\\Python\\Python36\\python.exe", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"quiet": true
}
I hope this give Windows users one more place to chance on an answer, and thank you Cory for your help.
Murph, you're a legend thank you!
Hi can you help me a little more i didnt quite understand what to do i get the [WinError 2]" problem
Make sure you have watched the video above from at least this point, th-cam.com/video/xFciV6Ew5r4/w-d-xo.html
I am assuming you already have a version of python installed, if not do so.
Open a command prompt, (Start, cmd, Enter), go to your c root (cd\), type where python.exe, use the path for the version of Python you need if you have more than one.
You may see a path like C:\Program Files\Python\Python36\python.exe, yet when putting the path into the file you need to make all the \ to \\, so in your file it will look like
C:\\Program Files\\Python\\Python36\\python.exe
I hope this helps.
Found a very useful video, i followed him and used / instead of \ or \\, works now. He also sets up interactive enviromvent th-cam.com/video/rIl0mmYSPIc/w-d-xo.html
Exactly what I needed to know and well stated at that. Thanks for helping
everything got a lot easier to read after you installed that font package
Great Dude, thanks a lot BRO!!!
I'm a newb to coding and looking forward to getting this setup! Great tutorial
DUDE! You REALLY NEED TO UPDATE this video. Sublime Text has changed in the three years since this video was made.
My good ness man, this tutorial is amazingly absolute! Thank you for this... so freakin' much!
Hi,
First of all, thank you for your very nice videos.
If you make your own build systems for example for python 2.7 and 3.6 on windows, remember to escape with 2 \ to make it work.
{
"cmd": ["C:\\Users\\YourName\\AppData\\Local\\Programs\\Python\\Python36-32\\python.exe", "-u", "$ file"],
"file_regex": "^ [] * File \" (... *?) \ ", line ([0-9] *)",
"quiet": true
}
This works for windows once you download the build system right?
@@walterfrancoulloa1199 you dont download the build system you have to make it yourself as Peter Calum has shown above ^
for windows in python 3.11 it's even shorter:
{
"cmd": ["python.exe", "-u", "$file"],
"file_regex": "^ [] * File \" (... *?)\", line ([0-9]*)",
"quiet": true
}
Corey , you are the best ... always wanted a theme that you are using and i got it configured today .... Thanks a lot of sharing, keep up the great work!! :)
I've pasted the code for the user preferences from your Git and I broke everything 😂
Yeah same here. But I changed the theme and it went back to normal.
Same, the software was acting weird
@@guanqiaowang7586 same
Top man Corey that was a great presentation - thanks for taking the time to do that !
18:14
how to enable that 'check error' dot-thingy from anaconda?
@Beyond Oblivion Can't remember...I transferred to PyCharm.
@Beyond Oblivion Have you found the solution? Cause I also can't enable it(
@Beyond Oblivion
I also tried the tweaks and was successful, here are my moves
1. Just install Anaconda package ,open the Default Anaconda package settings>go to "anaconda_linting": true,
Check for the 'true', 'true' only will work. Then restart the sublime and just check whether the Global/Default settings are working or not. To do this you can verify with any code you already have. You have to get the Dot thing(Linting) with default settings.
2. Now open the User Anaconda settings and copy the below code and save it. Saving is important.
{
"auto_formatting": true,
"autoformat_ignore":
[
],
"pep8_ignore":
[
"E501"
],
"anaconda_linting": true,
"anaconda_linter_underlines": false,
"anaconda_linter_mark_style": "none",
"display_signatures": false,
"disable_anaconda_completion": true,
"python_interpreter": "python"
}
3. This should do the work.
@@srinivasatejakoorapathy2937 did the trick bro thanks
I like your video very much ! They are very helpful to me as a beginner of programming.Just want to say thank you
I've never actually managed to get any of these packages to work. Even in 2 different laptops, 1 Linux Mint & 1 on Win 10.
SidebarEnhancement doesn't give me any other options, BracketHighlighter doesn't show anything and the anaconda package always produces an error at startup and then causes ST3 to not respond once I sort out the initial error.
Really annoyed as this is 2 different systems now that none of these packages work on.
Sidebar Enhancement only gives me extra options if I open a folder instead of just a file
Great instructional video. Precise, concise and to the point!
Why am I getting "Error: Permission Denied" when I try to add Build System for 3.8. Is it different code??
Probably just run Sublime as an administrator if you aren't already
The best video for Sublime Text. I recently thought about switching to VS Code but as I really like Sublime Text I was looking for some enhancements and after setting up wit this I just love the design and packages!
Hey I'm having trouble getting the colour code on my code I tried sublimeREPL and it didn't change anything... Any tips?
excellent (comprehensive and clear) video 🙌🙌🙌
many thanks 🤓🤓🤓
I've been trying to get Python location added to sublime text on a Mac for about 4 hours and I can't get it to work
Your tutorial is very well-made. I like how you explain things with extra tips/good-practices in simple words. I can understand what you say without subtitles . Nice work!
Am I missing something here...why can I not run any commands in ST? Nothing gets executed...
I hope it is not to late...
th-cam.com/video/R5-niid0m8A/w-d-xo.html
@@shmuelshaked5524 thank you
Thanks for making this video. This help me alot. Your github prefrences are nice.
Built Systems not-working on Win10.
Use the one for windows OS geekytutorials.com/how-to-setup-python-3-on-sublime-text/
@@ACABSTUDIOS Thanks man, it was really helpful
Clean video ,thanks for the sublime settings man .
my program is not running.can anyone help please?when i build everytime it shows below text.
C:\Program Files\Python36-32\python.exe: can't find '__main__' module in ''
[Finished in 0.4s]
I believe that is the error you receive if you are trying to run the code without saving the file. You have to save it as a .py file before running the code.
Your videos are fantastic! Thank you for putting everything in the description and for being so thorough. You do a great job going from the big picture reasoning for doing something down to the details of execution.
Your anaconda sublime settings are not on Github.
Is there a work around for getting the Anaconda settings?😊
2024, still you are the top
Error trying to parse settings: Expected character in Packages/User/Preferences.sublime-settings:52:1
getting this error after pasting the code in user seetings
Did you fix this? I get this error whenever I add a package or run Sublime but my Sublime works perfectly fine and all the files are fine so I don't know what's happening.
Thanks Corey Schafer! Very exhaustive explanation 谢谢
The only package that appeared on my Command Palette was Predawn, none of the rest.... :(
It happened to me too, but it was an error on my part...maybe you are doing the same.
when he said to install Predawn, he first clicked
install packages -> then Predawn.(which i did)
but for all the packages after that all i was doing was typing the package name directly in the command palette, i had forgot to select install package first from command palette before searching for the package.
figured it out after 10 minutes.
All packages are visible now.
Hope this helps.
Still valid till to this date! If you're using Sublime 4, you can still follow along with this tutorial without any problem.
The anaconda settings are not working. Maybe my version is not registered? I'm using the Sublime 4
@@imop285 In Corey's personal settings, Acaconda "python_interpreter" is set to a different location. you don't need to set the interpreter at all. just go to 'anconda user settings' and simply delete the whole ' "python_interpreter": "/usr/local/bin/python3" '
Then it should work fine. It did for me.
if it dosen't work for you, delete the whole 'user settings' and save it and restart sublime. It should work fine. and then you can customize your own settings according to your needs.
let me know if it worked...
@@imop285 and you don't necessarily need to register it. It just gives a popup time to time telling you register but that's it. Mine is also unregistered.
@@topicalwind2255 It didn't work.
@@imop285 what's the error you are getting exactly?
The github page is not opening ?!
Edit- in ubuntu 19.04
I had the same issue. If you go to Corey's github Repos, it's under dotfiles >> settings. Link: github.com/CoreyMSchafer?tab=repositories
Thanks A LOT, Corey! All the great job you are doing is very very helpful.
I wish you all the best. :)
Can you make a video on a build system for Python 3.6?
Have you watched my previous video on Sublime Build Systems? It's basically the same process as that video, but you would just use the location of Python 3.6 instead of Python 3.5
It doesn't work when I try to build my program.It just says building and doesn't show anything.
Are you on windows? The location to your python directory is key.
Anaconda autoformatting option is really great!!
I am getting this error
process can not start a new anaconda JsonServer in the operating system because:
Anaconda can not spawn a new process with your current configured python interpreter(python)
Make sure your interpreter is a valid binary and is in your PATH or use an absolute path to it, for example: C://Python27//python.exe
I get this error whenever I launch sublime text 3 and because of this I cant use anaconda and when i write something e.g print(x) it does not give results but instead goes to the other line I think its problem with the code you gave on your github page.
please reply fast
Hello Corey, i really enjoy ur videos, i've learn a lot.Just want to thank you for the great quality videos and content!
Excellent video!, hope more future videos about those silly things that we can be missing!
Completely awesome video! Great job!
Detailed and helpful! Thanks a TON!
Hey! Thanks for the video...
By the way, at 14:50 that shortcut to enable split screen mode for a windows machine is "alt+shift+2"
Corey, your videos are amazing. Also doing your OOP tutorials... superb
Thank you very much for this video! It was very helpful and helped me understand how to get Sublime set up and ready to use! Helpful also to know the various preference settings and addon packages! :)
After this video I had to subscribe. Amazing video.
In the video, at 17:33, anaconda linting provides ball next to for loop. I wonder why it does not appear in my sublime. any idea? Also, the auto-formatting does not work with error "Autoformatting failed, buffer not changed"
Same thing for me. And I didn't find a way to fix that :(
This is fantastic, subscribed forever!
You are awesome man! Thank you so much for sharing this.
Hi Corey, Thank you so much for all the tutorials! They are all high quality in content and presentation!
Another awesome tutorial from you - many thanks
keep on going man really thanks for your excellent work
Best Videos on python, thanks man
Nice video. Lots of going on my To-So list (lol). (Python newbie). Thanks to commenters too. Why re-invent the wheel..Thumbs Up
Loved this tutorial. Since seeing a random TH-cam video by Corey Schafer, I wanted my system to work in a similar fashion. The only thing I can't get to work as he does is the 'linter' is it? The helpful white dot in the gutter indicating an error and the more specific information at the bottom of the page - it's irritating me no end! Still, I'm subscribed to the channel and will be working my way through these videos.
Great video! I'm really new to coding and I found this really useful!
where can i get the 8:40 settings ,i cant find it on github.
raw.githubusercontent.com/CoreyMSchafer/dotfiles/master/init/Preferences.sublime-settings
oh thank you so much.
@@coreyms Not found
Concise clear content, thank you very much Corey for these great tutorials!
Excellent work!! Great help for us!!!
Very helpful, was looking for some python environment for coding and this looks great. 80 bucks for bit harder to swallow :) but it works nice.
Corey Schafer, thank you!!
Thank you so much. This was so helpful.
Amazing Tutorial, thank you!