How to Fix PyCharm Import Error and Setup Your Interpreter

Sdílet
Vložit
  • čas přidán 8. 09. 2024

Komentáře • 751

  • @TechWithTim
    @TechWithTim  Před 5 lety +154

    I can't count the amount of times I get asked how to fix this, so i decided to make a video about it! To clarify once again, there are a ton of reasons why this may not work for you. This video simply contains the most common fixes. PLEASE have mercy on me in the comments :0

    • @xenelixer9841
      @xenelixer9841 Před 4 lety +3

      can't find '__main__' module it keeps showing this error I don't know what to do...
      I've been at this for a whole day yesterday and just gave up so is their any way to fix this?

    • @ericosariemen5655
      @ericosariemen5655 Před 4 lety

      Please can you do the same video for python Django and Pygame . Thank You

    • @baburajp8342
      @baburajp8342 Před 4 lety

      .

    • @dhruvshah4645
      @dhruvshah4645 Před 3 lety

      Trying import discord py not working

    • @gautamgirotra3572
      @gautamgirotra3572 Před 3 lety +1

      I installed dlib using conda. It shows successfully installed. But when I try to add it to pycharm the package does not show up in the list. I'm stuck. Please help

  • @aliffnabil5542
    @aliffnabil5542 Před 4 lety +83

    BRO YOU JUST SOLVED MY PROBLEM WHICH I STRUGGLED FOR THE PAST DAYS MAN. I WAS ABOUT TO QUIT PROGRAMMING SIOT AHAHAHAHAHAHHAHAHAHAHHAAH

    • @nentryx.9522
      @nentryx.9522 Před 3 lety +3

      Same dude xdd

    • @mastershooter64
      @mastershooter64 Před 3 lety +5

      were you about to quit PROGRAMMING just because a specific thing in one IDE wasn't working?

    • @yashrajchouhan700
      @yashrajchouhan700 Před 3 lety +2

      @@mastershooter64 bro but when we make a game and it consume such long time and energy and we found that we cant run a programe then it hurts the most :( but we have to never loose a hope and keep working ;)

    • @yashrajchouhan700
      @yashrajchouhan700 Před 3 lety +2

      atleast I learned it from naruto XD

  • @Gamingbeluga34
    @Gamingbeluga34 Před rokem +4

    I've been trying to solve this problem for two days. And then I found 3-year old video. You're the only person that helped. Thanks man. Appriciate your work.

  • @MaenMarashdeh
    @MaenMarashdeh Před 5 lety +3

    For anyone still trying to install Pygame and this still hasn't worked go to file, settings, project interpretor, click on pip, scroll down till you find Pygame, click install
    This video may not have showed me this but it did help me find it thank you

    • @sunstar8893
      @sunstar8893 Před 5 lety

      this worked for me after trying to get pygame to work for multiple hours. Thank you!

  • @d3v4nsh80
    @d3v4nsh80 Před 3 lety +15

    I seriously have no idea how to thank you, you're a life saver.

  •  Před 4 lety +4

    another one way to solve this, first run CMD and use pip to install the package you want by typing: "pip (or pip3 if you're on Python 3) install [the package you want]", once you done, search for the "include" folder in your Python folders (for example my one is: C:\Users\FLvME\AppData\Local\Programs\Python\Python38\include) , copy the name of the file you installed, next is open Files/Settings, go to Your Project: YourProjectName, click on Project Structure, find the venv/Libs/site-packages folder (while venv is marked as your excluded folder), access it via Explorer and paste the package file you copied in there, then go back to PyCharm, apply the setting. Hope this might help.
    you can upvote this method to tell the others if they still cannot install the package in pyCharm.

    • @tmaccomeon
      @tmaccomeon Před 4 lety +1

      thanks. it helped me

    • @antipainK
      @antipainK Před 4 lety +1

      It was not in "include" folder, but in "C:\Users\\AppData\Local\Programs\Python\Python38-32\Lib\site-packages" and basically had to put it in the folder you showed (in my case it was "venv\Lib\site-packages")

    • @bibekbirsingh9433
      @bibekbirsingh9433 Před 3 lety

      Here's what I did:
      1. typed pip3 install pygame in cmd, which told me: requirement already satisfied pygame in C:\Users\mike\AppData\Roaming\Python\Python38\site-packages
      2. I opened the site-packages folder and copied pygame
      3. go to File> settings> project: project name> project structure .
      You will see the location of the project file and a venv folder inside of it. Go to site-packages inside of it.
      C:\Users\mike\PycharmProjects\Namaste\venv\Lib\site-packages
      4. Pasted the pygame folder there and ran import pygame and it worked.

  • @ckmajumdar1
    @ckmajumdar1 Před 4 lety +1

    Dear Tim,
    I'm from India, very new to coding. Your video has helped me ID the issue & fix it.
    Thanks Brother, you are very good at it.
    CK

  • @FSH15
    @FSH15 Před rokem +1

    are you a god ? a prophet ?
    I've been trying to fix this problem for 7+ hours and I couldn't fix it till I watched your video
    I only needed to change the interpreter to the default one
    THANKS A LOT

  • @instaminox
    @instaminox Před 4 lety +89

    I spent literally 4 hours trying to open up 2 different projects ... its annoying

  • @richaa832
    @richaa832 Před 9 dny

    I was searching and trying from 3 days Numpyerror issue...and your vidro solved it....thanks a lot....its very helpful ...and explained so well👏👏👏👏👏

  • @patrickbaker7014
    @patrickbaker7014 Před 4 lety +2

    Thanks for this, got 99% of the problem fixed, but in the end I just ended up uninstalling both python and pycharm, then reinstalling them

  • @sheepsushis5720
    @sheepsushis5720 Před 4 lety +2

    I've been trying to get this to work for ages!
    those having trouble getting pygame to work with pycharm, go into cmd and do pip install pygame, and then set the pygame interpreter to the pythonw inside your python directory.

  • @Huvaido
    @Huvaido Před 4 lety

    Good. It did not work for me, but it gave a hint on how to solve my problem. Basically, I couldn't import PIL from Pillow. Windows prompt kept reporting that Pillow is installed, and my pip is the latest version, by PyCharm did not see PIL anyway. What I did is I set my configuration as you showed in your video and used PyCharm terminal to force the reinstallation of the pip using this command python -m pip install -U --force-reinstall pip. It solved my problem.
    I am new to Python (2 months) and could be wrong, but I previously had issues when I wanted to pip install anything through PyCharm terminal and used instead windows prompt and had no problem, but this time I run into the problem that it did not see the PIL and the above mentioned approached helped me. So, take away for me or a lesson is that we should have our configuration set up as you showed in your video. Thanx.

  • @aaronmay-zhang2483
    @aaronmay-zhang2483 Před 3 lety

    THANK YOU- your final tip of closing out of pycharm and restarting it fixed it....unbelievable...

  • @medoabdin480
    @medoabdin480 Před 4 lety

    even though this video doesn't work with me but I think that is half of the solution for me to makes me don't return again to show what happens and makes me think if the path of python has some errors.
    I wish if you have more tutorials about this real issue because it's really annoying.
    thank you, Tim.

  • @siddhantsahu8039
    @siddhantsahu8039 Před 4 lety +6

    It was really helpful man. You saved a lot of time I nearly spent 2 hrs trying to find what was wrong. Thanks for the help.

  • @sanket10
    @sanket10 Před 4 lety

    Dude.. 5 Hours of searching on millions of sites and the you happened
    I LOVE YOU!!!!!!!!!!!!!!!!
    Thank you

  • @abanur3163
    @abanur3163 Před 4 lety +2

    it took for me 3 days to solve this i watched more than 20 video tutorials to solve this problem but at last video (your video) is made my day bro thanks a lot maan!!

  • @manukrishnan9533
    @manukrishnan9533 Před 2 lety

    this was my error project interpreter.. and it solved now.. i was searching for a solution of this error for 2 weeks. it helped me a lot... thank you so much..!!!!

  • @janczabowski6500
    @janczabowski6500 Před 4 lety +4

    Brooo thank you for his video after 2 hours watching diffrent tutorials I realized that I have wrong interpreter 🤣

  • @gracechan3039
    @gracechan3039 Před 5 lety

    I followed your video, realised pycharm couldnt find my scripts. Realised I could just reinstall the packages using pycharm instead of pip and did that. Things work now. Thank you!!!

  • @andreyshevchenko5925
    @andreyshevchenko5925 Před 3 lety +6

    I recommend checking the dependencies in the interpreter and reinstalling django and venv from manually (all dependencies have been removed from me)

  • @malteplath
    @malteplath Před 4 lety +1

    There is another thing that can trip you up. If you get import errors with your own modules (in the same project), especially when you get them when you run your app from PyCharm but not when you run it from the terminal or vice versa, you probably need to set the correct root directory for your application in PyCharm. You can do this from the context menu in the project pane.

  • @Jomjom1114
    @Jomjom1114 Před rokem

    I dunno if you are going to read this comment, but THANK YOU SO MUCH!! you don't know how much you have helped me..I had this problem for two days and I watched 100 videos but I couldn't find the answer except in your video..really thank you so so much

  • @zhehengfan3134
    @zhehengfan3134 Před 2 lety

    Thank you so much. I spend two hour and could not find the problem until I see this video.

  • @matteotommasini5290
    @matteotommasini5290 Před 3 lety +1

    I think the most common errors we all make are (as you say in the video): 1) we have 2 versions of python installed (sometimes we forget where we install packages with pip) 2) pay attention how you create your project if you do it with venv, it will not work. Just use the system interpreter. At least this worked out for me.

    • @nickjames2651
      @nickjames2651 Před 7 měsíci

      I'm kind of confused about this. I'm new to programming so forgive my ignorance but I've been reading that you should use a new venv everytime you start a new project. But that means that every time I wanna do a new project I have to manually install numpy, matplotlib, ect... into my interpreter? That just doesn't seem right. Is there a way to have a nice preset/template so that every time I want to make a new venv, I can just start coding and be able to import things quickly?

  • @ChungNguyen-sv4el
    @ChungNguyen-sv4el Před 2 lety

    Thanks for the guide here. I was spending like 2 hours install / uninstall python / pycharm and pip all kind of things but it doesnt' work till i follow your video. Thumb up !

  • @temirlanU
    @temirlanU Před 4 lety +6

    Man. you advice with anaconda was really helpful. Thanks from Russia!

  • @titotitoburg6298
    @titotitoburg6298 Před 4 lety

    If you're using Pycharm IDE make sure that it's installed to your interpreter.
    I went to File --> Settings --> double click Project: "Project_Name" --> Python interpreter
    From there you're gonna see what packages are installed, click on them to bring up a menu where you can search for all your packages. Search for "Pygame" click install.
    stackoverflow.com/questions/28453854/add-pygame-module-in-pycharm-ide
    This helped me.

  • @siraqFN
    @siraqFN Před rokem

    Wasn't any of theas but watching this video flipped a switch and I figured it out. Thank you 🔥🔥

  • @ranbeermalhotra3308
    @ranbeermalhotra3308 Před 3 lety +6

    Thanks a lot Tim!
    Your slow and steady explanations made me point out the mistake I was making
    Actually I am not good in the concept of VirtualEnv as I am at school level and I pointed out that all I was creating was new virtual environments so I selected the base environment this time and the pip installed modules worked like charm for me

  • @haroonrasheed8212
    @haroonrasheed8212 Před 7 měsíci

    Thank you so much, I've had this issue for a while and was on the verge of giving up as I couldn't work on my projects. This video helped me fix the issue.

  • @RealSupaHotFireVEVO
    @RealSupaHotFireVEVO Před 4 lety

    The Anaconda one worked flawlessly. As long as I use that one environment it will work on whatever project I have set up. Really save me here, Tim. Thank you.

  • @rafy-ivanmorales3077
    @rafy-ivanmorales3077 Před 2 lety

    I'm a new student trying to learn, so I can become a programmer with python
    I see this video tutorial, it is very good.
    Furthermore, I would like to ask for your advice if you can and if you can guide me on how or what I need to do to add this 3
    in a Python script, I have:

    3. If the Ports is open, it should create a file and add an entry for port number
    4. In case of any exception for instance “host is not available”, “host name could not be resolved” or
    due to any other error, you need to write that exception into the same file.
    I already have the script make, and it works very well so far it has to be done internal network but the only problem I have is to make number 3 and 4.
    This has been done in Pycharm.
    Thank you and Merry Christmas and happy new year.

  • @jtdellasega
    @jtdellasega Před rokem

    GREAT JOB! I called my computer programmer cousin for help and he couldn't explain, but you did PERFECT! Thanks!

  • @nishkalalgupta7366
    @nishkalalgupta7366 Před 3 lety +1

    Thank You So Much!!! The only useful video on CZcams is this..... I was stuck on this for hours until I found this video. Thanks A Lot

  • @polarnyne
    @polarnyne Před 4 lety

    I've just recently started learning programming. If it weren't for you, I'd probably had quit. Thank you for your help, Tim!

  • @TravisTennies
    @TravisTennies Před rokem

    My biggest frustration with programming is constantly running into problems like this. Companies that are centered around programming can't even get everything right. It's truly amazing. The longer you have been programming, the more frustrating....20 years later and still no big free software and or documentation.

  • @portal007games6
    @portal007games6 Před 4 lety

    thanks for showing how to fix these errors, i uninstalled pycharm because pygame didnt show up there even though i installed it so then i started coding in sublime but wanted a new ide but couldnt find one that good like pycharm. and i saw this video, and finally after wasting several days of researching the best python ide works with pygame

  • @charleswalters5869
    @charleswalters5869 Před rokem

    Thanks for the video! Still works even 3 years after you made the video.

  • @christiandeubel3739
    @christiandeubel3739 Před 2 lety

    DUDE CRAZY, I was just following one of your longer tutorials on flask and had this problem and in the last minute of this video you show how to fix this stupid 'unresolved' thing. THANK YOU

  • @bruuhgh7005
    @bruuhgh7005 Před 3 lety +5

    bruuuuh u literally saved my life
    that's the appreciated like i've ever given to anyone

  • @KrazeeKrab
    @KrazeeKrab Před 3 lety +3

    holy fucking shit why can't all tutorials be like this
    Thank you so much

  • @blitzdbs
    @blitzdbs Před 2 lety +3

    Thank you so much!!! Two years later this still helps me. I had to switch my interpreter version, you were right. You're awesome and keep up the great work Tim!!!

  • @fitbee8709
    @fitbee8709 Před rokem

    I have spent so many times and tried to solve this problem, this is a legend video.

  • @sabit648
    @sabit648 Před 3 lety

    Tim plz tell me how should I thank you......I spent around 4 hours looking for the solution. Man thank you....may success be always ur companion in life....I'm joining ur community for sure

  • @jonbranch6553
    @jonbranch6553 Před rokem

    Thanks so much this video is still relevant in 2023!

  • @satyenmehta9749
    @satyenmehta9749 Před 3 lety

    Nice, helps. One point - my issue was not resolved. So - I found - if package has '_' (alpha_vantage), you need to search with - in PyCharm(alpha-vantage) - and it will find. You still need to 'import alpha_vantage'

  • @tracksmyman
    @tracksmyman Před 2 lety

    Thank you!! I was having trouble installing a module called "clipboard" but I realised I had 2 versions of python!

  • @desislavaandreeva4359
    @desislavaandreeva4359 Před 5 lety +11

    This resolved my issue! Thank you, Tim! Much appreciated mate!

  • @momolight2468
    @momolight2468 Před rokem

    OMG!!
    I now officially declare you as The Ultimate GIGACHAD of Python!!
    Your videos are really detailed and DEEEEEEP!
    Thanks a lot you really helped me in solving the problem, which I had spent about 2 days trying to solve, even asking research assistant at my university, but unfortunately, no success.

  • @topoftech6459
    @topoftech6459 Před 4 lety

    Thank you so much! I hope you know how frustrating it can be if your modules you installed simply don't work. Thank you again!

  • @spectronimo7964
    @spectronimo7964 Před 3 lety +1

    Thought I was going to be troubleshooting for the rest of my days... lmao. Thank you so much for the fixes.

  • @erictrushin4793
    @erictrushin4793 Před rokem +1

    You can also just install the module from pycharm directly (under "modules").

  • @dennisng5852
    @dennisng5852 Před 4 lety

    CTRL+ALT+S to open up the settings page.
    What a great video!

  • @raindown4965
    @raindown4965 Před 4 lety

    Thank you THANK YOU so much! I’ve spent hours to solve this problem, nothing worked. This video literally saved my life. I can’t thank you enough. I also appreciate immensely your slow pace and patience. You’ve gained a new subscriber!

  • @darcash1738
    @darcash1738 Před 8 měsíci

    Nice. I had an issue with the interpreter menu not showing my packages but once i downloaded setuptools with pip working, it worked out

  • @travnik8000
    @travnik8000 Před 3 lety +1

    Man Thanks so much. I was not able to find any tutorial working in 2021 on Python3.9 but even after a year this is still relevant tutorial and you saved me so much. Thank you Man

  • @The_Narrator_
    @The_Narrator_ Před rokem +1

    Cheers, realised I had different versions of python and deleted one of em, fixed my import errors 😁

  • @jonasjeron1475
    @jonasjeron1475 Před 4 lety

    Dude, CZcams is just amazing!
    I am Brazilian and I was looking for a long time how to fix this error and CZcams recommended me your channel and now my problem has been solved! Even though I don't understand what you said, I had my problem solved thanks to you! Thank you very much friend or Thank you very much muito obrigado!

  • @justakiwi
    @justakiwi Před 2 lety +1

    if you have problems in vsc click the down arrow besides the run button and select run python file

  • @kinggeedora
    @kinggeedora Před 3 lety

    This video did not fix the issue for me but I finally was able to figure it out and just want to leave a comment as to how I fixed mine. So for me even though I added the package I want and it appeared in my list in settings->project->interpreter, the import did not work. I went into my venv->lib->site-packages and discovered that somehow the package was not even there. so I downloaded it with pip command on terminal and then copied my package from the base installation folder (something like C:\users
    ame\AppData\Local\Programs\Python\Python39\lib\site-packages) to my venv site-packages folder and it worked. That took me hours to figure out, hope this saves someone else some time one day

  • @santhoshs291
    @santhoshs291 Před 2 lety

    Bro the issue got solved within 2 min of this video, really really thanks for this ....idk what to say, it took 1 day to do this...🤗🤗🤗

  • @weslee6867
    @weslee6867 Před 4 lety +8

    ERROR: Could not find a version that satisfies the requirement tkinter (from versions: none)
    ERROR: No matching distribution found for tkinter
    this error what coulde be done

  • @gabrielhynek8863
    @gabrielhynek8863 Před 3 lety

    i didn't watch the whole video because at the start I found out that under the pycharm console pycharm has python packages option
    Edit: but i still gave a like and a sub

  • @Tanrichiz
    @Tanrichiz Před rokem

    Thank you, you saved my life i would never start without it.

  • @diamondfamily1837
    @diamondfamily1837 Před 2 lety

    i feel stupid i didn't watch the whole thing but it turned out I had to switch to the 3.10 i kept going onto 3.9 something thank you a lot

  • @rahulvishwakarma6663
    @rahulvishwakarma6663 Před 3 lety

    Thank You So Much Brother For Making This Video. I was Facing This Issue since 2 Days and was damn tired by searching the solution and finally you solved my Problem. Again Thank You So Much Brother 🙏

  • @luckyboy5018
    @luckyboy5018 Před 4 lety

    Thanks Tim Tim i uninstall my python 3.8 and install 3.7.0 now i install all the packages easily

  • @joansantos4698
    @joansantos4698 Před 3 lety

    Spent hours just trying to solve this problem and finally this worked. Thanks a lot!

  • @nikhilp6462
    @nikhilp6462 Před 3 lety

    Thank you buddy, I finally resolved my issue. I watched many videos but couldnt find the sol. Now, I learned some extra info as well.

  • @poctaz3240
    @poctaz3240 Před 4 lety

    I was very literally annoying wasting my hours wasting to fix this error and now i fixed thx you saved my 4 lakh laptop 😁😁

  • @demi9672
    @demi9672 Před 4 lety

    Thanks! Uninstalled my python 3.7, switched my interpreter from 3.7 to 3.8 in pyCharm and suddenly my import cx_Oracle works. Woo!

  • @gyanarihant7113
    @gyanarihant7113 Před rokem

    Damn dude! you helped! I had to change my interpreter and I had installed multiple versions of python.
    I had to make sure the settings were back to default settings on pycharm and I choose the right interpreter and just like that the problem was no more.

  • @xindizheng7664
    @xindizheng7664 Před 4 lety +2

    Thank you so much for this thorough tutorial. I end up fixing my python interpreter and it is working now.

  • @scienceandengineering9673

    Thankyou. I had tried to fix this problem spending hours but could not. Finally, this video helped me fix that.

  • @prabhuganesanin
    @prabhuganesanin Před 4 lety

    Thanks, it worked for me. Now Modules are connected

  • @noahgranger6749
    @noahgranger6749 Před 4 lety

    GOOD GOD IN HEAVEN UP ABOVE!
    thank you, sir! I've been trying to install PyAudio for 3 days to use in your voice assistant program.
    this video finally gave me the answer!

  • @cominion65
    @cominion65 Před 3 lety

    Just started programming recently. Been procrastinating for weeks, since I just can't get this to work, partially due to my lack of experience, so I stumbled upon this video.
    But, I couldn't follow along after the visual studio settings, as my visual studio settings doesn't have a project tab. Not sure what to do next.

  • @nkosimaphumulo1979
    @nkosimaphumulo1979 Před 4 lety

    I had to remove all my versions of python, removed pycharm and visual studio. Then reinstalled only one version of python with two code editors and now everything works

  • @nadie-qm8rq
    @nadie-qm8rq Před 3 lety

    OMG THANK YOU SO MUCH THIS REALLY WORKED
    I WASN'T ABLE TO USE PYCHARM FOR ANACONDA THIS WHOLE YEAR I'M GLAD I FOUND YOUR VIDEO
    So I was using an empty env inside the carpet env in anaconda3 (because I didn't have any env) instead of the anaconda env which had all the packages I needed already installed, so I did what it said in 7:43

  • @BILALE_AS
    @BILALE_AS Před rokem

    Thank you a lot bro without i can't my project thank you for your help and yes this video is still good for 2023 thanksss

  • @code_nest
    @code_nest Před 4 lety

    Omg, thank you so much for the solution dude. I've been stuck with IDLE to create games with pygame because for some reason, pygame doesn't work on my pycharm. But now, it does. Keep up the good work man.

  • @biggideal
    @biggideal Před 4 lety

    You.
    Are.
    The.
    Best.
    I was searching for hours non stop. THANK you.

    • @biggideal
      @biggideal Před 4 lety

      Just to let you know I was using Anaconda, and I did not load any virtual environments. So thank you for covering that too.

  • @abraxolotl
    @abraxolotl Před 3 lety

    While this unfortunately didn't solve my problem I eventually got a fix. Perhaps this will save someone else the headache.
    From the 'welcome to pycharm' / project select screen (so when you close your current project), go to configuration and then reset to default.
    I'm sure it's something I borked at some point or another, but in the end I never did find out what I broke, but seeing as reinstalls and the like didn't help until the reset to default, I probably broke something at some point or another. And perhaps resetting it to default is such an obvious solution that it usually is assumed to have been tried already so it doesn't pop up in answers (that I could find). So hopefully it helps someone

  • @1111comment
    @1111comment Před 4 lety

    Steps I took after the video:
    1. C:\Users\%username%:
    pip install virtualenv
    pip install requests
    2. project folder:
    pyinstaller --hidden-import=pkg_resources.py2_warn example.py
    3. pip uninstall pyinstaller
    pip install github.com/pyinstaller/pyinstaller/archive/develop.zip
    4.pip install --upgrade google-api-python-client oauth2client
    5. added a root.mainloop() at end of file
    then ran again: pyinstaller --onefile filename.py
    and it worked

  • @thesilverpen
    @thesilverpen Před 3 měsíci

    finally, someone who knows what my problem is, and how to fix it. I wish I could pin a blue ribbon here. Thanks a lot for the help!!!

  • @arroneisen8646
    @arroneisen8646 Před 4 lety

    Thanks so much for your help. The fix just required altering the file path. What a life saver you are!!!

  • @benfritz8099
    @benfritz8099 Před 4 lety

    Worked well for me. This only worked when I downloaded 3.7.0. It was your last topic that did the job. Thanks !

  • @justdoingodswork
    @justdoingodswork Před 3 lety

    5:00 worked for, edit configuration changed the interpeter, n it worked thanks man

  • @mohanachuthvarma6478
    @mohanachuthvarma6478 Před 4 lety

    After 3hours of search i found the best video

  • @28princi
    @28princi Před 4 lety

    Wow! I've been struggling with something else altogether and after watching your video and fixing this basic has actually resolved my problem. Thanks a tonne.

  • @MelodicallyManya
    @MelodicallyManya Před 3 lety +1

    Omg I'm soooo thankful for this video, thanks soooo much Tim!! I had been searching all over the bet but then I finally stumbled across your video and it solved my problem!! Thanks sooooo muchhhh!! 🖤✨

  • @regalitybreach
    @regalitybreach Před 2 lety

    thanks, i uninstalled python and all the time i hadnt noticed i was on the wrong version

  • @DylanSwarts
    @DylanSwarts Před 4 lety

    idk what happened, but I kinda used the video, and also just did some things, and now it works lmao. Thanks for te video! Would never have got it working without it.

  • @Bobby-Hiromozono
    @Bobby-Hiromozono Před 2 lety

    You're the 🐐
    I've had sleepless nights over this
    Thanks man

  • @ahmet8790
    @ahmet8790 Před 4 lety

    2 hours wasted untill Ive got this video !! thx mate

  • @karl_james
    @karl_james Před 3 lety

    You saved me I can now graduate finally😀

  • @MCrealm247
    @MCrealm247 Před 2 lety +1

    Ok so I don't know if this will work for anyone else because I'm still a beginner, however if you type import *software here* and get the error message you can click the red circle on the top right which will point out there is no module under that name which will show up at the bottom which you can then right click and open a menu from this select quick fixes next to the lightbulb and then select the "Install package *software name*

    • @jasonacuna2664
      @jasonacuna2664 Před rokem

      Been trying to make this work for hours, thanks

  • @sanidhabhaskaran9347
    @sanidhabhaskaran9347 Před měsícem

    Hi. To all those who are facing the error "This app can't run on your PC. To find a version for your PC, check with the software publisher", - try following these steps:
    1. Before clicking the download option for pycharm from jetbrains, select ".exe (Windows)" from the drop-down menu
    2. Then proceed with normal installation