Everything You Need to Know about Debugging in VSCode

Поделиться
HTML-код
  • Опубликовано: 23 янв 2025

Комментарии • 120

  • @ArjanCodes
    @ArjanCodes  9 месяцев назад +1

    👷 Join the FREE Code Diagnosis Workshop to help you review code more effectively using my 3-Factor Diagnosis Framework: www.arjancodes.com/diagnosis.

  • @cstephens16
    @cstephens16 9 месяцев назад +72

    A whole series on debugging would be awesome. Seriously.

  • @eduardolpz386
    @eduardolpz386 9 месяцев назад +49

    This is great.
    A debug FastAPI video would be great too.
    Thank you for all your work.

    • @leowalker07
      @leowalker07 9 месяцев назад +4

      adding a vote for debug FastAPI with vscode

    • @compote-s1r
      @compote-s1r 9 месяцев назад +1

      there is nothing different when debugging FastAPI or Django app, even Flutter app for that matter.
      But VSCode will help you create the debugging setup.

  • @ShanilPanara
    @ShanilPanara 9 месяцев назад +6

    I've coded with VSCode for years now but never known how to use the debugger! Looks really powerful and I guess it forces you to code a little more carefully as well
    Gonna try to incorporate it in my dev workflow soon and see what difference it makes!
    Thanks Arjan

    • @LiquidMasti
      @LiquidMasti 9 месяцев назад

      Same I have been using vscode for years but never used debugger only used print statement or took my code to .ipynb to solve

  • @dilliboy3366
    @dilliboy3366 9 месяцев назад +2

    This is one of the most beautiful videos I have ever watched on debugging.

    • @ArjanCodes
      @ArjanCodes  9 месяцев назад +1

      I'm glad it was helpful!

  • @thefanboy3285
    @thefanboy3285 9 месяцев назад +1

    Learning with you makes my brain tingles. It's like ASMR but with knowledge instead of sensitive stimuli.

    • @ArjanCodes
      @ArjanCodes  9 месяцев назад

      That's a really original way to put it! I appreciate the compliment :)

    • @thefanboy3285
      @thefanboy3285 9 месяцев назад

      @@ArjanCodes you're welcome. And btw, how do I pronunce the "Arjan" ? Arian ? Arj' an ?

  • @DagarCoH
    @DagarCoH 9 месяцев назад +6

    Did not know about the conditional break points. That is so useful!

    • @michael_baron
      @michael_baron 9 месяцев назад +1

      Same. For years I had no idea. :D

    • @ArjanCodes
      @ArjanCodes  9 месяцев назад +2

      Glad the video was helpful!

    • @Iamsuperb4
      @Iamsuperb4 8 месяцев назад

      I'll definitely be using those from now on! Better than adding a temporary if statement and putting a breakpoint inside it 😂

  • @mahamadinikiema9860
    @mahamadinikiema9860 9 месяцев назад +1

    Great work.
    A whole series of best practices for debugging with VSCode would be great.
    Thanks.

  • @arunbalakrishnan8978
    @arunbalakrishnan8978 2 месяца назад

    I've watched many videos. This is the one I've been looking for. Just in depth.

  • @MeqdadDev
    @MeqdadDev 9 месяцев назад

    Thanks for the precise and high quality content.
    Keep coding dear Arjan.

    • @ArjanCodes
      @ArjanCodes  8 месяцев назад +1

      Thank you for the kind words!

  • @Chaplainelmo2001
    @Chaplainelmo2001 9 месяцев назад

    Great ... enabled me to add several new tips to my own hard learned uses so far. VS Code formerly had a great "Preview" extension that visualized the call stack and allowed stepwise execution and display of function calls, returns, etc. I found that to also be a great assist in debugging as well.

  • @apsomething
    @apsomething 9 месяцев назад +2

    Would be great to see more advanced video about debugging!

  • @Soul_land_Ej
    @Soul_land_Ej 3 месяца назад

    how you add ✨ in your code? doesn't in cause trouble in debugging? pleaaaase answer. i search a lot but i couldn't find any extension.🙏🥺

  • @kreglfromworld
    @kreglfromworld 9 месяцев назад +4

    One thing missing that I find myself using a lot is the debugger console. Any time I'm unsure of how exactly to do something I use a breakpoint, run my ideas at that point through the debugger console to see what works, and implement it in code.

  • @marcelhulsberg501
    @marcelhulsberg501 9 месяцев назад

    great video! I also frequently use the tebugging terminal (Ctrl+Shift+Y), where you can calculate expressions (similar to the watch section), but can also create and manipulate variables etc.
    the debugger also works great with pytest

  • @Piipolinoo
    @Piipolinoo 9 месяцев назад

    Concise and straight to the point. That was an excellent video, thank you!

    • @ArjanCodes
      @ArjanCodes  9 месяцев назад

      Glad you enjoyed the content!

  • @wexwexexort
    @wexwexexort 9 месяцев назад +6

    I would love to see a debugging video for FastAPI and another video similar to this one but for pycharm.

  • @Doppelwulf
    @Doppelwulf 9 месяцев назад

    I had no idea there were options for breakpoints. The conditional breakpoint is a big win for me, thanks!

    • @ArjanCodes
      @ArjanCodes  9 месяцев назад

      Glad the video was helpful!

  • @erikvanraalte4557
    @erikvanraalte4557 9 месяцев назад

    How did you get the Python Debug Console in the editor pane? I love to open terminals in the editor area, but I haven't managed this for the Debug Console.

  • @simeidoblinski
    @simeidoblinski 9 месяцев назад +1

    Thank you very much! A video expanding on debugging a FastAPI application would be great!

  • @CodeChronicals
    @CodeChronicals 6 месяцев назад

    This video is super helpful!! I'd like to request a detailed tutorial video or series for debugging fastapi!!!

  • @kaelinellis1646
    @kaelinellis1646 9 месяцев назад +1

    How can I debug a file that I have to run from the command line? If it has imports from another folder, so I need to start it above the file directory.

    • @CalmlyExplained
      @CalmlyExplained 9 месяцев назад +1

      You can run debugger in module mode. You define your settings via json file.

  • @PaulaBean
    @PaulaBean 9 месяцев назад

    I'd like to use VSCode to attach to (and debug) running web services, written in python, which run in a container (docker or kubernetes) in the cloud somewhere (azure, aws), but it is unclear to me how to go about that.

  • @chaseadal
    @chaseadal 9 месяцев назад +4

    Fastapi debugging! Yes please! Fastapi with docker would be great too.

  • @mitchedmunds
    @mitchedmunds 8 месяцев назад

    Great video! I think that it would have been useful to cover the debug console and also VS Code's testing pane where you can collect tests and then debug individual tests. It may have also been worth mentioning that you can Debug cells in the built-in Jupyter notebooks too - but these would be good topics for a follow up!

  • @eziola
    @eziola 9 месяцев назад

    Thanks for these basic videos. Extremely helpful

    • @ArjanCodes
      @ArjanCodes  9 месяцев назад

      Glad you like them!

  • @trilink4862
    @trilink4862 5 месяцев назад

    Great video. Could you do a basic vs code debugging session with pytest and pytest-bdd with scenarios please? I always run into a list index error with pytest-bdd when trying to debug a scenario that works in the terminal.

  • @ShanmughamM-cr7se
    @ShanmughamM-cr7se 2 месяца назад

    After installing launch.json file error ( i already created launch.json file), how to resolve it

  • @PouriyaJamshidi
    @PouriyaJamshidi 9 месяцев назад +1

    Great video
    This is a topic that is almost never taught

    • @ArjanCodes
      @ArjanCodes  9 месяцев назад +1

      Glad you liked it!

  • @rythmrana1987
    @rythmrana1987 4 месяца назад

    what does the this and _this mean in variables. how are they different

  • @ivanchan7769
    @ivanchan7769 9 месяцев назад +1

    A debug FastAPI video would be great.
    Thank you for all your work.

  • @LMGaming0
    @LMGaming0 8 месяцев назад

    Why using debugging for module instead of normal file? is there really a big advantages? and can we have a video with 3-4 different debuggers and when/why to use?

  • @legion_prex3650
    @legion_prex3650 8 месяцев назад

    hmmm, what is this star icon in line 8? right before return average_score? Is this some fancy icon for a breakpoint?

    • @mitchedmunds
      @mitchedmunds 8 месяцев назад

      I have a feeling it's something to do with Copilot, like a suggestion feature or something. I don't think it's relevant to the topic so I wouldn't worry for now.

  • @rangabharath4253
    @rangabharath4253 9 месяцев назад

    Awesome as always and very useful. Thanks 🙂

    • @ArjanCodes
      @ArjanCodes  9 месяцев назад

      Glad you liked it!

  • @SeekoZaHero
    @SeekoZaHero 6 месяцев назад

    Thanks for simple and informative explaining appreciated !

    • @ArjanCodes
      @ArjanCodes  6 месяцев назад

      Glad it was helpful!

  • @LunaLovegood-1981
    @LunaLovegood-1981 9 месяцев назад

    I hope you talk about more request type in launch.json (attach, launch, remote debugging,....) and some advance topic like debug threading, asyncio debug, ....
    What you sharing in the video is simple, or just for beginer.

  • @Brunojavaa
    @Brunojavaa 9 месяцев назад

    Very good, how to debug in vscode when i run in docker?

  • @walid7189
    @walid7189 4 месяца назад

    Using this is great, but I would love to see a video that explains how to debug async code, monitor threads, maybe processes etc. Thanks Arjan for your videos. When I will be rich I will join the paid channel !

  • @Blackrobe
    @Blackrobe 9 месяцев назад

    I worked closely with Spark scripts, so I'm kinda sad that VSCode features like breakpoints and such can't really be used for example checking dataframes...

  • @BolotZhusupekov
    @BolotZhusupekov 9 месяцев назад +1

    Yes, we need separate video about debugging a FastAPI application

  • @claberone
    @claberone 8 месяцев назад

    It would be really interesting to have a video on Fastapi and SQLModel as an ORM.

  • @CheesecakeJohnson-g7q
    @CheesecakeJohnson-g7q 4 месяца назад

    Thank's. I'm new to programming outside of notepad.

  • @multitaskprueba1
    @multitaskprueba1 2 месяца назад

    Fantastic video! Thank you very much!

  • @justchary
    @justchary 9 месяцев назад +1

    Thank you. I learned something

    • @ArjanCodes
      @ArjanCodes  9 месяцев назад

      Glad it was helpful!

  • @CharleswoodSpudzyofficial
    @CharleswoodSpudzyofficial 9 месяцев назад

    I love you Arjan!

  • @wizardfix
    @wizardfix 9 месяцев назад

    Thanks for this! But what I have never managed to get working is debugging code running in a container (using Docker/Podman etc.). A demonstration of the setup for this would be very much appreciated (assuming you can figure it out!).

  • @sutrejito
    @sutrejito 7 месяцев назад

    Thanks man that was very clear. I wondered if there is a feature like in the IDE I've been using (Spyder) where you can tinker with the variable once you've hit the breakpoint and the program is on pause. I've been finding this very useful when I'm not really sure about the correct function to use to process dataframes...

  • @mitchelltillman3277
    @mitchelltillman3277 Месяц назад

    Can you please make a video about debugging a multi-file package under development?
    Always confused how to structure file directories & import statements to work both during debugging and after distribution.

  • @robosergTV
    @robosergTV 8 месяцев назад

    yes, please do a video about debugging FastAPI!

  • @gerardovelazquez9294
    @gerardovelazquez9294 9 месяцев назад

    Debugging python code inside docker from vscode will be great!

  • @virtualraider
    @virtualraider 9 месяцев назад

    debugging a Flask application would also be incredibly useful. A problem with most RUclips debugging videos is that they show how to work on simple scripts, but debugging an app running on a framework is way more complicated 😅

  • @SiegfriedHirsch
    @SiegfriedHirsch 9 месяцев назад +1

    Nice help. FastAPI debugging would be great

  • @lestylo8428
    @lestylo8428 4 месяца назад

    Thanks for the content!

  • @JoB-k8q
    @JoB-k8q 4 месяца назад

    @ArjanCodes A video on how to set up for debugging AMD modules using node would be amazing. I cannot get it to work. I think node uses commonJS and does not understand AMD modules so I get a ReferenceError: define is not defined when I try to use the debugger

  • @joshbleijenberg4000
    @joshbleijenberg4000 7 месяцев назад

    Nice video, can you create a video on how to debug Django Rest Framework?

  • @victoradukwu2719
    @victoradukwu2719 5 дней назад

    A guide for debugging in Django Application will be great

  • @Geo-Artist
    @Geo-Artist 9 месяцев назад

    Yes, debugging fastapi and other framework will be super cool, please do it ;)

  • @lucianogarbarino5240
    @lucianogarbarino5240 9 месяцев назад

    Please I would love to know how to debug a FastAPI app.

  • @fabrelambeau5858
    @fabrelambeau5858 9 месяцев назад

    An idea for another video would be how to perform refactoring with VSCode. I used to use IntelliJ, and it seemed to offer quite a bit more. Maybe I haven’t yet found the right way in VSCode…

  • @JatinYadav-j9u
    @JatinYadav-j9u 9 месяцев назад +1

    I would love to see a debugging video for FastAPI

  • @niweshsah5337
    @niweshsah5337 7 месяцев назад

    Make a whole series on debubbiging Please

  • @abdelghafourfid8216
    @abdelghafourfid8216 9 месяцев назад +1

    debuging FastApi or streamlit applications would be interesting

  • @AlanBerman
    @AlanBerman 9 месяцев назад

    Please do a series on debugging

  • @gettingpast4391
    @gettingpast4391 15 дней назад

    Well I came hoping for info on using the debug console... not covered unfortunately.

  • @AntonsWorkshop
    @AntonsWorkshop 8 месяцев назад

    Can you include a video about debugging modules?

  • @fabrelambeau5858
    @fabrelambeau5858 9 месяцев назад +1

    I found this one to be a little basic… is that all there is to debugging in VSCode? I’d be interested in knowing more advanced techniques.

  • @mohamedsalman4013
    @mohamedsalman4013 9 месяцев назад

    Hey, It would be very helpful, If you make a video for Pycharm (FastAPI project)

  • @danielschmider5069
    @danielschmider5069 9 месяцев назад

    Please make a video about debugging inside a docker container, it's seriously hard to find a good tutorial on it

  • @GuglielmoCerri
    @GuglielmoCerri 9 месяцев назад +2

    Would be very useful a whole series on Django

  • @williamalarcon7994
    @williamalarcon7994 9 месяцев назад

    Hi, great video, could you make one showing how to debug apps made with poetry?

    • @GOTHICforLIFE1
      @GOTHICforLIFE1 9 месяцев назад

      i agree - i have major issues pointing to the python interpreter since its not in the same dir as the code base

    • @mitchedmunds
      @mitchedmunds 8 месяцев назад

      Should be fairly simple as long as you've set the Python interpreter to the one in the virtual environment that poetry has created. There is a setting in VS code called "Venv Folders" which you can set to wherever poetry is creating your virtual environments. Or you can change the poetry setting "virtualenvs.in-project=true" which will create a .venv in your project folder and VS Code will find it more easily when trying to select an interpreter.

  • @litttlemooncream5049
    @litttlemooncream5049 7 месяцев назад

    helpful! thanks

  • @franco-gil
    @franco-gil 9 месяцев назад +1

    More debug! On VSCode 👋

  • @diegol_116
    @diegol_116 9 месяцев назад +5

    Ok I thought I knew everything related to Debug in VSCode...but it turned out I didn't...

  • @jancicruz7
    @jancicruz7 9 месяцев назад

    Should have showed what the launch.json file does. It's a requirement in many professional environments to debug with that prepared.

  • @bbrendon
    @bbrendon 6 месяцев назад

    nothing happens when I click on "Run and Debug"

    • @bbrendon
      @bbrendon 6 месяцев назад

      Uhh. You didn't even get step one right. The extension you need is "Python Debugger". Without that, it wont work! How trust worthy is a video when step 1 is wrong?

  • @_baco
    @_baco 9 месяцев назад

    Debugging videos for FastAPI and Django, please!!!

  • @anibalismaelfermandois6943
    @anibalismaelfermandois6943 9 месяцев назад +1

    We want the fast API one!!!

    • @anibalismaelfermandois6943
      @anibalismaelfermandois6943 9 месяцев назад

      I work with fast API along side docker compose. Any recommendations for debbuging and testing? I'm a bit overwhelmed with the amount of options.

  • @trupalcanada
    @trupalcanada 9 месяцев назад

    til about conditional breakpoint it should be quite useful

  • @losco_arti
    @losco_arti 9 месяцев назад

    I'm letting you know, I'd like to watch your video about FastAPI debuging

  • @usmanrahat2913
    @usmanrahat2913 5 месяцев назад

    VSC does not have inline method refactoring. For some of advanced refactoring and debugging. PyCharm is much better.

  • @dev.s.shubham
    @dev.s.shubham 8 месяцев назад

    Yes I'd like to watch FastAPI Debugging

  • @stevendecoeyer1987
    @stevendecoeyer1987 9 месяцев назад

    Every time I wonder so I just have to ask: what color iMac is that? 😂

  • @quillaja
    @quillaja 9 месяцев назад

    There's a bug in your data. No way Austen is rated lower than Orwell.

  • @danleedev
    @danleedev 9 месяцев назад

    Flask, please.

  • @AyahuascaDataScientist
    @AyahuascaDataScientist 9 месяцев назад +1

    It took all these years for him to make this video???
    It should’ve been a day 1 topic.

  • @brettvitaz9101
    @brettvitaz9101 9 месяцев назад

    “Everything you need to know”
    “These are the very basics”
    😅

  • @sprintwithcarlos
    @sprintwithcarlos 9 месяцев назад

    f5

  • @younesveisi
    @younesveisi 9 месяцев назад

    Hi Arjan. Please Create a Video for debugging in Flask App. It's very important for me and my work as a Back-end developer with Flask.
    Thank you very much for all of you Videos.

  • @greob
    @greob 8 месяцев назад

    I’m still looking for an alternative to VSCode with a decent debugger… can’t figure out how to debug efficiently in vim or emacs. UwU