Jupyter Notebooks in VS Code

Поділитися
Вставка
  • Опубліковано 5 лют 2025

КОМЕНТАРІ • 26

  • @GpJBRM
    @GpJBRM 2 роки тому +13

    I was about to start a data science with python course . This is just what I needed ! Thanks for the video

  • @joeg3117
    @joeg3117 Рік тому

    Thank you! I can say that in your video, the instruction is very helpful, I don't need to say that I browsed and tried some videos but it did not give me a clear sense of how to get started with a very minimal setup.

  • @DrAtomics
    @DrAtomics 2 роки тому +1

    Thanks, good video. I'll watch more of your content soon, subscribed. 🙏💡

  • @kvelez
    @kvelez 8 місяців тому

    When is installing Anaconda really necessary? What's the difference between native Jupyter and Anaconda?
    Do you recommend making Anaconda's python default or having Anaconda + your own Python version in the Path of the PC?

  • @jenn1738
    @jenn1738 Рік тому +1

    really helpful video thank you

  • @vitaltopics316
    @vitaltopics316 2 роки тому +2

    ipykernel is not connecting and I'm unable to link VSCode with jupyter using Python 3.10 as an interpreter, any solution?

  • @fahad_bd
    @fahad_bd 2 роки тому +1

    Thank you for this video.

  • @GarySchiltz
    @GarySchiltz 2 роки тому +1

    HI, just discovered your channel. Thanks for this nice overview. Out of curiosity, in your day to day work with Python, have you gravitated to one tool for playing around with Python? That is to say, VS Code vs the classic Jupyter Notebook vs the newer JupyterLab?

    • @veryacademy
      @veryacademy  2 роки тому

      Hi, welcome to the channel. Depending on the Project, I would use what is best for that job. I do have an extensive amount of Jnotebooks because my brain lets me down a lot, and it is a great way of reminding myself of what I used to know.

  • @sharanchakradhar
    @sharanchakradhar Рік тому

    how to install other kernels in the jupyter notebooks? I wanted to install rust.

  • @domillima
    @domillima 2 роки тому

    When I run a jupyter notebook cell, the output is truncated. Any way to force the complete output to be displayed in a way that I can scroll through?

  • @minhazulislam9131
    @minhazulislam9131 Рік тому

    Please, did anyone face any issue with printing number list and dictionary inside the interactive window?

  • @X_x_kingfisher_x_X
    @X_x_kingfisher_x_X 2 роки тому

    Is it possible that when i am in .ipynb window theme will be white like normal notebook, and when i am in .py window theme will be something else?

  • @ArkSriva
    @ArkSriva 2 роки тому

    how do i use voila here

  • @ShivangiSingh-wc3gk
    @ShivangiSingh-wc3gk 2 роки тому +1

    My vscode is not showing kernels

    • @veryacademy
      @veryacademy  2 роки тому

      Silly question, do you have Python installed?

  • @haidangquang867
    @haidangquang867 2 роки тому

    Hay quá Em ơi. Nhưng không hiểu sao anh làm theo mà nó chạy đến dòng này profile_id = profile.get['href']
    thì báo lỗi. 'method' object is not subscriptable.

  • @cagataydemirbas7259
    @cagataydemirbas7259 2 роки тому

    how can I close information while coding on jupyter I hate it

  • @didierleprince6106
    @didierleprince6106 2 роки тому +1

    Merci (:

  • @anonsd5521
    @anonsd5521 6 днів тому

    python -m venv venv

  • @answerth
    @answerth 2 роки тому

    I'm unable to make a notebook, then import that notebooks functions into another notebook, could anyone help ?
    In my module_practice dir, I have a folder called "practiceimport" containing files __init__.py and jupyterimportmodule.ipynb. Jupyterimportmodule contains a function called my_func() that reads print("some string")
    import os
    import sys
    sys.path.append('c:/git/python0tohero/module_practice')
    print(os.getcwd())
    from practiceimport import jupyterimportmodule
    my_func()
    Output:
    ImportError: cannot import name 'jupyterimportmodule' from 'practiceimport' (c:\git\python0tohero\module_practice\practiceimport\__init__.py)
    I've been stuck on this for way too long :(