mtnp
mtnp

Reputation: 369

How to run Python packages on Windows?

I have installed this package https://bitbucket.org/lukaszlaba/dxf2svg/src/master/ with pip from python.org.

pip show dxf2svg shows me the location : Location: c:\users\xxxxx\appdata\local\programs\python\python39\lib\site-packages

But if I do : dxf2svg myfile.dxf the command is not recognized by the windows cli... I already add Python folder locations in the PATH env variable so what is the problem ?

enter image description here

Upvotes: 0

Views: 1546

Answers (1)

Sienki
Sienki

Reputation: 81

Try

python -m dxf2svg myfile.dxf

Upvotes: 2

Related Questions