+ 2
How can I use some other external modules in Spyder?
I need to import some modules beside Python itdelf, but I dont know whether i need to download and copy these modules in Python folder. I would appreciate any comments.
2 Respostas
+ 2
Some modules in Python are built-in, meaning you don't need to install them externally. If they're not built-in, however, you may need to install pip onto your computer to install your module. Once you have it installed, you can use the command prompt to install many very popular modules in Python. It's a long process to install pip, so you may need to look up a tutorial online, but it shouldn't be too hard install it.
+ 2
Thanks @Faisal for your answer. It was helpful.