How to install a python module or package in python 3.8 in interactive mode (in cmd) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

How to install a python module or package in python 3.8 in interactive mode (in cmd)

i want to add some graphics or shapes to my code

3rd Jul 2020, 5:57 PM
ABHISHEK DHIRANIYA
ABHISHEK DHIRANIYA - avatar
2 Answers
+ 3
You want to install modules using command prompt? Well on Windows either should work: py -m pip install <module name> python -m pip install <module name> On Linux this should work: pip install <module name>
3rd Jul 2020, 6:07 PM
Seb TheS
Seb TheS - avatar
+ 2
It works thank you
3rd Jul 2020, 6:11 PM
ABHISHEK DHIRANIYA
ABHISHEK DHIRANIYA - avatar