I've installed ezdxf
running following library in the same folder that my .py file is located, with this command:
pip install ezdxf
I see this error when hovering on import ezdxf
Import ezdxf could not be resolved Pylance
When I try to run the project it says:
ModuleNotFoundError: No module named 'ezdxf'
I've tried to install again, but I see this:
Requirement already satisfied: ezdxf in c:\users\robert\appdata\local\programs\python\python38\lib\site-packages (0.17.2b1)
Requirement already satisfied: pyparsing>=2.0.1 in c:\users\robert\appdata\local\programs\python\python38\lib\site-packages (from ezdxf) (3.0.6)
Requirement already satisfied: typing_extensions in c:\users\robert\appdata\local\programs\python\python38\lib\site-packages (from ezdxf) (4.0.0)
How could I solve this issue?