Using pip uploaded graphics.py to linux
Then I tried to connect it to my test.py program, written in Python3, as follows:
import graphics But the interpreter gives the following error
Traceback (most recent call last): File "test.py", line 1, in import graphics ModuleNotFoundError: No module named 'graphics'
By the way, with the help of the pip list command I made sure that there is a graphics.py library on the computer. How to connect it?
python3 -m pip list? - Sergey Gornostaevpython3 -m pip listcommandpython3 -m pip listentered. In the list that appears, graphics.py is missing. - user329391 pmpip3 install graphics.pyI added this library to the list displayed by thepython3 -m pip listcommand. After starting the program, the interpreter displayed the followingModuleNotFoundError: No module named 'Tkinter'. As I understood from articles on the Internet, Tkinter is the library that was originally shipped with Python. Do I need to download it with pip3? Thank you in advance for your response. - user329391 5:28 pm