+ 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
2 ответов
+ 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>
+ 2
It works thank you