Happy Friday everybody. I wanted to do something simple today and just show you my setup for vsc/python. This assumes you have Python already installed. Have a great weekend!
hi Brad, I sent you an email to the address linked to your youtube. Could you please read it and give me a little advice. I would post it here but there is some private stuff in there
Dude, thank you SO MUCH! This video was exactly what I needed. At work I'm learning to code in Python, but the whole env is already set-up (with pytest, flake8, kite, ...) No one could show me how to set up a similar environment on my personal machine. Over the last few hours I've tried PyCharm (horrible to set up!), IDLE, ... the works, but to no avail. Then I found this video, and it fits my situation 100%. Again, so damn grateful! Instant sub :-)
For those using windows : Creating a virtual environment py -3 -m venv venv Activating virtual environment venv\Scripts\activate De-activating virtual environment deactivate Also if you have problems activating the virtual environment. Run Windows PowerShell in Administrator and run Set-ExecutionPolicy -ExecutionPolicy Unrestricted
'.' is not recognized as an internal or external command, operable program or batch file. is what I'm getting when I run the command to activate the virtual environment
"Old-noob" (some studies 20 yrs ago, Borland c) old hand@Linux, so this IDE/NOTIDE but very advanced non-terminal text editor, VSCode + plugins gig opened up a new world..bloody amazing - your video shared SO much cool stuff! Beginning Python now..
Brad thank you so much for making this video I didn't have any idea how to use debugger thanks for teaching me how to use debugger and AREPL extension is really cool saves lots of time!!
I always see comments like ' I was just searching for this' but I was LITERALLY just searching for this, just out of curiosity and you have a new vid on it. Amazing
Excellent video. Added some to my mediocre VSC skills. At this date, however, Kite seems to be off-line and Python Snippets behave oddly. Not complaining. Very much worth the time. Thank you.
I was about to start with python, and suddenly out of nowhere, this video! This is giving me a head start for sure. Liked the fact that you've included testing also. Can you make a video on unit testing with react? Jest/enzyme, react testing library or whatever you prefer.
The term 'python' is not recognized as the name....... For those of you that have this error. instead of typing "python -m venv venv" you replace the python word to just py "py -m venv venv"
exactly, the video i was searching and u made it..Was actually searching your previous videos to c if there is any new one with Python and VScode.. I see it now
If you are using windows and you ran the command in the terminal and get the error "cannot be loaded because running scripts is disabled on this system", I recommend doing the following (it worked for me): 1. Run Windows Powershell 2. Run command Get-ExecutionPolicy -List to see if you have CurrentUser and/or LocalMachine as "restricted". (This prevents the running of scripts). 3. Change CurrentUser to RemoteSigned by running command: Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser. Press Enter and type 'Y' for Yes 4. Change LocalMachine to AllSigned: Set-ExecutionPolicy -ExecutionPolicy AllSigned -Scope LocalMachine 5. Run Get-ExecutionPolicy -List again to ensure they are reset. It should work now when you enter py -3 -m venv venv and venv\Scripts\activate in VS terminal. 😄 Go to Microsoft and search "about_Execution_Policies" for more instructions
Great tutorial Brad. Thank you. I feel like this was ahead of my learning level which gives me a bit of home work to do. Also there are a few things different on windows but worked them out along the way. Firstly to create and activate virtual environment. Creating py -3 -m venv venv and to activate just ./venv/Scripts/activate other than that most other things are the same. Thanks for your helpful tutorials. Also if you could do a favor to future viewers please add the windows differences in comments or mention it.
Can we make a dashboard designs. And can you please share a small project as a challenge every week. It will be great help as well as practice. Thankful ❤
Take note, when you work with portable versions of Visual studio code and Python you will have to browse for the interpreter. Do this in the following way: 1. Open a Python file in Visual Studio Code 2. Select the language mode in the bottom right corner (it not done yet). 3. Click on "Select Python Interpreter" in the bottom left corner. In this video it is where you see the words "python 3.8.1 64-bit" 4. A "Select interpreter" window will appear at the top. Click on "Enter interpreter path…" 5. Browse for "python.exe" which is normally in the folder "python-x.y.z.amd64"
For those of you following along with the exact code here, I typed out the contents of the JSON Array from the beginning (here): [{"id":1, "text": "Item 1"}, {"id":2, "text": "Item 2"}]
Very decent video, keep it up Brad. I would ask if you may do the same for setting up Django in VS Code plus recommended extensions. One love from Tanzania.
You show code snippets as part of the Microsoft Python extension but I do not think that is included in the MS Python extension. Can you share how you enabled Python code snippets?
For some reason I don't see snippet suggestions after installing the python extension. Any ideas on how to resolve this issue? Looks like snippets should be enabled in the recomendations.
Good video -- learned about kite after seeing it. One small thing though -- I notice the docs link appears at the bottom of my hover popups -- not at the top as you have it.. is there some setting that controls that? Thanks.
this video was so helpful! And frankfly I just needed the first few minutes, I was having trouble with modulenotfound when "pip install prettytable" but when I install the virtual environment and access it and install there, then it works. This is my first time doing so do you have a video explaining the logic of virtual environments and why they're needed to install packages? By the way, all the extensions here are super useful!
Now you can also run your Jupyter notebook directly from VS Code; it's pretty dope, and it's included in the Python plugin already. No need to use Ananconda for Data Science anymore. I prefer to use VSCode for all my hobby projects. But for more involved heavy coding that I do at work, when I have multiple microservices, I switch to a JetBrains editor.
Thank you for the video. I can not get these terminal commands to work. Is this video focused on a Unix/Max computer for executing these terminal commands? Thank you.
This was awesome.. Thanks I really needed this for a current project. Quick question.. can you show or explain how to display report of the pytest test runs ? Thanks
FYI: Git bash for some reason throws "permission denied" to python3 commands, so you might wanna switch to regular windows cmd as a default terminal for your vscode.
I think he missed a step in showing another Python extension other than Microsoft Python extension. Python for VSCode by Thomas Haakon Townsend includes VSCode Snippets for Python.
Happy Friday everybody. I wanted to do something simple today and just show you my setup for vsc/python. This assumes you have Python already installed. Have a great weekend!
hi Brad, I sent you an email to the address linked to your youtube. Could you please read it and give me a little advice. I would post it here but there is some private stuff in there
Please make adavance mongodb ,udemy course,
It's more helpful
Hollywood BS ill check. Im not ignoring you, I have a jam packed inbox
@@TraversyMedia Thank you
@@TraversyMedia Wow very helpful. 👌
Dude, thank you SO MUCH! This video was exactly what I needed. At work I'm learning to code in Python, but the whole env is already set-up (with pytest, flake8, kite, ...) No one could show me how to set up a similar environment on my personal machine. Over the last few hours I've tried PyCharm (horrible to set up!), IDLE, ... the works, but to no avail. Then I found this video, and it fits my situation 100%. Again, so damn grateful! Instant sub :-)
This is the best introduction on vscode setup for Python that I can find :) Thank you for the good work!
For those using windows :
Creating a virtual environment
py -3 -m venv venv
Activating virtual environment
venv\Scripts\activate
De-activating virtual environment
deactivate
Also if you have problems activating the virtual environment. Run Windows PowerShell in Administrator and run
Set-ExecutionPolicy -ExecutionPolicy Unrestricted
'.' is not recognized as an internal or external command,
operable program or batch file. is what I'm getting when I run the command to activate the virtual environment
@@elioabihabib2498 use backslash
@@shazam314 in place of the '.'
@@elioabihabib2498 changing / to \ didn't solve the issue?
@@shazam314 I was asking where to put the backslash.
"Old-noob" (some studies 20 yrs ago, Borland c) old hand@Linux, so this IDE/NOTIDE but very advanced non-terminal text editor, VSCode + plugins gig opened up a new world..bloody amazing - your video shared SO much cool stuff! Beginning Python now..
No joke
I was unable to run .py file today and you upload this one.
Thanks a million Brad
Brad thank you so much for making this video I didn't have any idea how to use debugger thanks for teaching me how to use debugger and AREPL extension is really cool saves lots of time!!
after many many many hours and re-installs of crap vs code libraries I'm finally able to use my virtual environment. Thank you!
Why did i wait 12 months after starting to code to watch this!! *sobbing in the corner.....* GAME CHANGER !!!!
The moment you smile when UA-cam notifies there is a new video from Traversy Media 🤜
This video is perfect timing. I'm starting Python on Monday at my code bootcamp. Thanks Brad!
Good set up of code. Amazing how there are so many of these vids and your the only one who has a complete set up - go figure 😊
Damn. You read my mind. Today I was thinking: Hmm i need to figure out how to code python on VSCODE.
I always see comments like ' I was just searching for this' but I was LITERALLY just searching for this, just out of curiosity and you have a new vid on it.
Amazing
I am LITERALLY just getting back into Python after a long break from it and just setting it up on my new laptop. You're the best!
I found it's Brad without even checking the channel name. This is the first time I visit his channel. Effect of Udemy.. Great lecturer.
Just found this page, thank you for the setup tut in VSC! Really helped me a lot as a newcomer to python
This is a cool video, interesting how no matter how simple and intuitive there will always something to fix.
Excellent video. Added some to my mediocre VSC skills. At this date, however, Kite seems to be off-line and Python Snippets behave oddly. Not complaining. Very much worth the time. Thank you.
Thank you, I'm just starting to learn python and I have no clue how to use any coding programs so this was helpful.
I was about to start with python, and suddenly out of nowhere, this video! This is giving me a head start for sure. Liked the fact that you've included testing also.
Can you make a video on unit testing with react? Jest/enzyme, react testing library or whatever you prefer.
Can I ask a question. Why didn't I get a snippets in the prompt when I type. Thank you, Sir
This is the first time I am learning Python and it is really helpful
Brad has traversed so many arrays he became Traversy 😛🙃
I like that ; )
Kite does not work
Loved the AREPL!
Thanks Brad
In this last month of quarantine I've watched your videos which saved my ass at work. Thanks
The term 'python' is not recognized as the name.......
For those of you that have this error.
instead of typing "python -m venv venv" you replace the python word to just py
"py -m venv venv"
worked for me
Thanks, you helped me get through that hurdle. Now however, the source command for venv activate is not working for me
@@rafaelfernandez725 maybe manually create a venv folder in your python projects folder(im new, i could be wrong.)
exactly, the video i was searching and u made it..Was actually searching your previous videos to c if there is any new one with Python and VScode.. I see it now
If you are using windows and you ran the command in the terminal and get the error "cannot be
loaded because running scripts is disabled on this system", I recommend doing the following (it worked for me):
1. Run Windows Powershell
2. Run command Get-ExecutionPolicy -List to see if you have CurrentUser and/or LocalMachine as "restricted". (This prevents the running of scripts).
3. Change CurrentUser to RemoteSigned by running command: Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser. Press Enter and type 'Y' for Yes
4. Change LocalMachine to AllSigned: Set-ExecutionPolicy -ExecutionPolicy AllSigned -Scope LocalMachine
5. Run Get-ExecutionPolicy -List again to ensure they are reset.
It should work now when you enter py -3 -m venv venv and venv\Scripts\activate in VS terminal. 😄
Go to Microsoft and search "about_Execution_Policies" for more instructions
Mr Traversy you are a lifesaver. I really needed this!
You read my mind Brad! This is exactly what I needed!
New to Python and found this video to be immensely helpful, thank you!
OMG, who is this guy? THANK YOU SO MUCH for making this soooooo easy for me!!
Thank you for high quality introduction!
Great tutorial for VSCode setup, you are awesome Brad thank you!
really helpful introduction to those tools!
Thanks for being so helpful. Especially AREPL!
Great tutorial Brad. Thank you. I feel like this was ahead of my learning level which gives me a bit of home work to do. Also there are a few things different on windows but worked them out along the way. Firstly to create and activate virtual environment. Creating py -3 -m venv venv and to activate just ./venv/Scripts/activate other than that most other things are the same. Thanks for your helpful tutorials. Also if you could do a favor to future viewers please add the windows differences in comments or mention it.
Also had to set my powershell policy to unrestricted to run the scripts a bit of work but figured it out along the way.
@@CDitfort thank you, was having some problems with the venv part but your comment saved me haha, much appreciated
Really enjoying the way you teach!!! Professional, and most of all practical. Thanks and greetings
I am relatively new to Python and this information was really useful
2:56 can't find snippets
I just started your udemy course today and this video is very helpful :-)
Really useful information. Keep up the good work!!!
Dude this is so helpful! thanks I think will stop using mostly Jupyter now
This was really great the extensions you recommended are really helpful suggestions. Thanks.
Can we make a dashboard designs.
And can you please share a small project as a challenge every week. It will be great help as well as practice.
Thankful ❤
This video is great, really cool features! Thanks
I can't believe, it is so intuitive
Helpful, must have extensions
Greate! Those extensions will improve my work a lot.
Thanks sir i am newbee it helps me lot
Exactly what I needed, really been fumbling a lot .. Thank you very much Trav. -:)
It was very much needed! Thanks!
Take note, when you work with portable versions of Visual studio code and Python you will have to browse for the interpreter. Do this in the following way:
1. Open a Python file in Visual Studio Code
2. Select the language mode in the bottom right corner (it not done yet).
3. Click on "Select Python Interpreter" in the bottom left corner. In this video it is where you see the words "python 3.8.1 64-bit"
4. A "Select interpreter" window will appear at the top. Click on "Enter interpreter path…"
5. Browse for "python.exe" which is normally in the folder "python-x.y.z.amd64"
thank you
For those of you following along with the exact code here, I typed out the contents of the JSON Array from the beginning (here):
[{"id":1, "text": "Item 1"}, {"id":2, "text": "Item 2"}]
Tremendously helpful--thank you for sharing your knowledge!
Thanks for all the content you share. I appreciate your work.
Awesome tutorial! Thank you!
Very helpful indeed, Thank you as always!
Really waited for this video teacher.
Very decent video, keep it up Brad. I would ask if you may do the same for setting up Django in VS Code plus recommended extensions. One love from Tanzania.
hey Brad, how about more webassembly?
How can I have Snippets? I dont have snippets from the Python Extention (I'm on windows)
They are removed in new versions od python extension
You saved my life.. Thank you very much
Very well paced! Great job!
You show code snippets as part of the Microsoft Python extension but I do not think that is included in the MS Python extension. Can you share how you enabled Python code snippets?
It got disabled
Bruhhhh, AREPL is godsend
right on time when I need it... I'm so used to VSCode. it's hard for me to switch to other editors
i am new to vs code, messed up some settings, how do i restore them to default
said the man who never used emacs for a week.
@@MichaelMantion obligatory vim comment
For some reason I don't see snippet suggestions after installing the python extension. Any ideas on how to resolve this issue? Looks like snippets should be enabled in the recomendations.
OK, it looks like snippets were removed from the standard python VScode extension. You could add that to your vid as a note.
@@joejohn6795 i was just wondering and checked comments, thanks for clearing this up
Thank you very much, very good tutorial. Awesome!
@Traversy Media After I told a girl in my class about all the hassle free work she can do using this plugins she asked me out, THANK YOU mate !!!.
This was useful, thanks for sharing!
Exactly what I needed. Thanks!
Very helpful. Thank you.
Good video -- learned about kite after seeing it. One small thing though -- I notice the docs link appears at the bottom of my hover popups -- not at the top as you have it.. is there some setting that controls that? Thanks.
its amazing video, tks for sharing
this video was so helpful! And frankfly I just needed the first few minutes, I was having trouble with modulenotfound when "pip install prettytable" but when I install the virtual environment and access it and install there, then it works. This is my first time doing so do you have a video explaining the logic of virtual environments and why they're needed to install packages?
By the way, all the extensions here are super useful!
sir can u please explain why created a virtual environment in the earlier part of the video?
Thanks! This was very helpful.
Very cool video, thanks.
Thank you! I needed this.
Are you going to go over Go for Web Development??
do u need python already downloaded on ur computer before installing the python on vscode?
Hello brad , the front end for devbootcamp will be the next course on udemy?
You completely skipped the part where you open a new python project.
This. Experts should be banned from writing basic-level tutorials, because they have no idea what new learners actually require.
Great video! Can I ask what is the extension with the erlenmeyer icon? :)
Now you can also run your Jupyter notebook directly from VS Code; it's pretty dope, and it's included in the Python plugin already. No need to use Ananconda for Data Science anymore. I prefer to use VSCode for all my hobby projects.
But for more involved heavy coding that I do at work, when I have multiple microservices, I switch to a JetBrains editor.
Thank you for the video. I can not get these terminal commands to work. Is this video focused on a Unix/Max computer for executing these terminal commands? Thank you.
Can you tell me the background theme that do you use ?
This was awesome.. Thanks I really needed this for a current project. Quick question.. can you show or explain how to display report of the pytest test runs ? Thanks
What do you suggest for Golang with vscode?
FYI: Git bash for some reason throws "permission denied" to python3 commands, so you might wanna switch to regular windows cmd as a default terminal for your vscode.
Go to app execution aliasses in w10 settings and disable python app installers, that should fix it
Thanks Brad.
Also, please, don't forget about Svelte.
I really like the kite doc. But I didn't see kite when searching it in vscode extensions, only kite autocomplete, etc. Can you show how to get it?
great and comprehensive!
There is no link for copilot. Also, Kite seems to now be called Kite Autocomplete and seems to have a broader scope.
Please do a video about *Deno* !!!!
I am not getting those snippets like him , could anyone help me make those snippets visible 🙁
have you checked settings?
I think he missed a step in showing another Python extension other than Microsoft Python extension. Python for VSCode by Thomas Haakon Townsend includes VSCode Snippets for Python.
how to show option for snippets, are we need to make it manually at user snippet ?
Really useful, thx so much