How To Install Python Libraries In Visual Studio Code (Mac)

Поділитися
Вставка
  • Опубліковано 18 лис 2024

КОМЕНТАРІ • 39

  • @TutoriaisApple
    @TutoriaisApple Рік тому +3

    You were great on this one. I was having lots of problems with understanding how to make numpy work on vscode. Thank you so very much.

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

    Thank you so much! I'm new to python and all these imports and installs are tricky for me, so this video really helped out!

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

    Best video explained very easily ❤

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

    Wow, these videos were pretty helpful. Thanks!

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

    Thank you! This was so helpful!

  • @monaghzal7334
    @monaghzal7334 10 місяців тому

    Thank you, your videos are super helpful :D

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

    To test my matplot lib, I am getting an era code TypeError: cannot unpack non-iterable Axes object for the code in line 5: fig, simple_chart = matplotlib.pyplot.subplot() Can you help me figure out where I'm going wrong please?

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

      try this:
      ------------
      import matplotlib.pyplot as plt
      data = (3, 6, 9, 12)
      # Create a figure and a single subplot
      fig, simple_chart = plt.subplots()
      # Plot your data
      simple_chart.plot(data)
      # Show the plot
      plt.show()
      ------
      Note: Line 5 was wrong for me too, the fine detail of 'subplot' is not a 'x' on the end but a 's'.

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

      try adding 's' to .subplot()
      it should be
      fig, simple_chart = matplotlib.pyplot.subplots()

  • @yashs1999
    @yashs1999 5 місяців тому

    thank you!! super helpful

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

    Thank you so much for this..

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

    Really helpful! Thank you!

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

    is it okay to install the other python libraries in one folder all at once

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

    thank you so much!!!!!!!

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

    hello, i try on window but i don't see bin folder just. include/Lib/Scripts

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

    thank you !! Really worth checking out

  • @sourabhdineshyadav3868
    @sourabhdineshyadav3868 2 місяці тому

    00:04 Installing Matplotlib in Visual Studio Code on Mac
    01:33 Creating and activating Python virtual environment in Visual Studio Code on Mac.
    02:59 Installing Python libraries in Visual Studio Code on Mac.
    04:54 Setting up a virtual environment in Visual Studio Code
    06:24 Installing scipy in Visual Studio Code on a Mac
    07:53 Installing and activating virtual environment in Visual Studio Code
    10:04 Install Visual Studio Code on Mac and set up Python environment.
    11:42 Activating virtual environment and installing Python libraries in Visual Studio Code

  • @Sempredata
    @Sempredata 6 місяців тому

    Lifesaver. Thanks

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

    very helpful.Thanks alot

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

    will the libraries be accessible in any file we make in the future or is it only available in the virtual environment we created? I don't want to have to install the libraries everytime

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

      I think if u install it without virtual e it would be accessible everywhere?

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

    I try it right now and it doesn't"t work how can I fixe it please?

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

    lifeeee saverr. Thanks

  • @БулахМарінаІПЗ-24

    how to install pillow library?

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

    Thank you!

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

    thank you sur !

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

    So good, thanks:)

  • @sarthakjain1824
    @sarthakjain1824 Рік тому +3

    this is not working for me

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

      I try it right now and it doesn't"t work how u fixe it please?

    • @cf6634
      @cf6634 6 місяців тому

      working through my errors. first, started with determining how many versions of Python installed and making sure only one version (I had two). secondly, where I’m stuck now, I get a “cannot unpack non-iterable Axes object”. good luck with wherever your issues lie.
      okay, worked through this: instead of “subplot” write “subplots”. now work for me.

  • @cf6634
    @cf6634 6 місяців тому

    Anyone having error results from loading the matplotlib library using an M2 MacBook Air?

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

    why does mine say that python3.9 command not found

    • @iantan7828
      @iantan7828 2 роки тому +3

      use python3 instead that worked for me

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

      @@iantan7828 thanks

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

    Not working still :(

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

      I try it right now and it doesn't"t work how u fixe it please?

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

    I keep getting ModuleNotFoundError: No module named 'matplotlib'?

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

      same issue. got any solution , if any do tell me . Thank you :).