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
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
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 :-)
"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..
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
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!!
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.
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"
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.
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"}]
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.
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"
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!
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.
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.
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 ❤
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?
I'm getting an error using Requests. I went back to make sure I was doing everything right, but I'm still getting the error: Python Requests - No connection adapters @9:33. StackOverflow says to make sure you have the '' which I do. ---------- Is there some setup process that needs to be done, some host or something?
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.
Hi, very useful video. I wouldl like to know if I can do some setup in order me to enter the virtual environment once I open VScode? Every time I open VScode, I have to kill the current terminal and open a new one to get in the venv (I have setup for auto activating the venv, but I do not know why it won't activate once I open the app). Thank you.
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.
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.
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.
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.
what about the "Code Runner Extension"? Is it easier to create virutal environment ahead with Anaconda? . Test explorer couldn't find my test file (created a folder named pytests)
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
Hi Brad! I'm wondering of what do you think about machine learning stuffs in JavaScript like tensor flow,brain.js do you think it will become more a must learned skill in frontend jobs in near future? I just get comfortable with vanilla JavaScript and Im interested to learn these libraries, do you think it's a bad idea to jump to js machine learning from vanilla javascript? or are these libraries even practical to learn for frontend positions?
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. 👌
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.
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 :-)
"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..
Why did i wait 12 months after starting to code to watch this!! *sobbing in the corner.....* GAME CHANGER !!!!
This is the best introduction on vscode setup for Python that I can find :) Thank you for the good work!
No joke
I was unable to run .py file today and you upload this one.
Thanks a million Brad
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.
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
The moment you smile when RUclips notifies there is a new video from Traversy Media 🤜
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!
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!
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 😊
This video is perfect timing. I'm starting Python on Monday at my code bootcamp. Thanks Brad!
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.
This is a cool video, interesting how no matter how simple and intuitive there will always something to fix.
Can I ask a question. Why didn't I get a snippets in the prompt when I type. Thank you, Sir
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.)
Thank you, I'm just starting to learn python and I have no clue how to use any coding programs so this was helpful.
Just found this page, thank you for the setup tut in VSC! Really helped me a lot as a newcomer to python
This is the first time I am learning Python and it is really helpful
2:56 can't find snippets
OMG, who is this guy? THANK YOU SO MUCH for making this soooooo easy for me!!
Damn. You read my mind. Today I was thinking: Hmm i need to figure out how to code python on VSCODE.
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.
Loved the AREPL!
Thanks Brad
Mr Traversy you are a lifesaver. I really needed this!
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"}]
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
Brad has traversed so many arrays he became Traversy 😛🙃
I like that ; )
Kite does not work
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
In this last month of quarantine I've watched your videos which saved my ass at work. Thanks
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
New to Python and found this video to be immensely helpful, thank you!
I am relatively new to Python and this information was really useful
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
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!
You read my mind Brad! This is exactly what I needed!
Thank you for high quality introduction!
really helpful introduction to those tools!
Great tutorial for VSCode setup, you are awesome Brad thank you!
It was very much needed! Thanks!
Dude this is so helpful! thanks I think will stop using mostly Jupyter now
Really waited for this video teacher.
I just started your udemy course today and this video is very helpful :-)
Thanks for being so helpful. Especially AREPL!
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
There is no link for copilot. Also, Kite seems to now be called Kite Autocomplete and seems to have a broader scope.
12:40 the kite "docs" does not show on mine! I am on Mac Mojave with Python 3.7.6 64-bit. Thank you.
This video is great, really cool features! Thanks
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
hey Brad, how about more webassembly?
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
Really useful information. Keep up the good work!!!
I can't believe, it is so intuitive
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 ❤
Really enjoying the way you teach!!! Professional, and most of all practical. Thanks and greetings
Very well paced! Great job!
@11:40 the terminal output is different from AREPL, what gives ?
sir can u please explain why created a virtual environment in the earlier part of the video?
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
This was really great the extensions you recommended are really helpful suggestions. Thanks.
I'm getting an error using Requests. I went back to make sure I was doing everything right, but I'm still getting the error: Python Requests - No connection adapters @9:33. StackOverflow says to make sure you have the '' which I do. ---------- Is there some setup process that needs to be done, some host or something?
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.
Helpful, must have extensions
I have a question, how to turn off or disable using the virtual environment you've created in visual studio code? what's the command or option of it?
Hi, very useful video. I wouldl like to know if I can do some setup in order me to enter the virtual environment once I open VScode? Every time I open VScode, I have to kill the current terminal and open a new one to get in the venv (I have setup for auto activating the venv, but I do not know why it won't activate once I open the app). Thank you.
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
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.
how to show option for snippets, are we need to make it manually at user snippet ?
so python 3.9 is out but when i change my interpreter to it, it just throws a "modulenotfounderror" please help me!!!!
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.
Exactly what I needed, really been fumbling a lot .. Thank you very much Trav. -:)
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?
Thanks sir i am newbee it helps me lot
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.
Just curious why you set up a virtual environment? I've just been using python as-is and I'm curious what the difference is?
Great information!
Can you tell me the background theme that do you use ?
What do you suggest for Golang with vscode?
Why when i click run code, the program just run on terminal instead of in output tab? what should i do to run code in Output tab? thanks
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.
Awesome tutorial! Thank you!
Greate! Those extensions will improve my work a lot.
Very helpful indeed, Thank you as always!
While in the process of activating it, my folder didnt have a bin file. What other solutions can i use to activate it
how about using Conda instead for virtual environment?
great and comprehensive!
do u need python already downloaded on ur computer before installing the python on vscode?
Bruhhhh, AREPL is godsend
@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 !!!.
Why do i have source is not recognized at 2:32
what about the "Code Runner Extension"? Is it easier to create virutal environment ahead with Anaconda? . Test explorer couldn't find my test file (created a folder named pytests)
Is it necessary to create "venv" for development in vs code?
Thank you! I needed this.
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
Hello brad , the front end for devbootcamp will be the next course on udemy?
Hi Brad! I'm wondering of what do you think about machine learning stuffs in JavaScript like tensor flow,brain.js do you think it will become more a must learned skill in frontend jobs in near future? I just get comfortable with vanilla JavaScript and Im interested to learn these libraries, do you think it's a bad idea to jump to js machine learning from vanilla javascript? or are these libraries even practical to learn for frontend positions?
Exactly what I needed. Thanks!