How to make pyreverse work when system can see pylint

454 Views Asked by At

I have installed pylint in my system. I use python 3.6. When I call pylint from python command, I can see pylint. But when I try to call pyreverse, because I want to use it to create dot files, the system does not recognize the pyreverse command.

>>>python
>>>pylint
>>>pyreverse 
Not recognized as an internal command. 

Please, how do I make the windows 7 system to see and call pyreverse. I need to use it for my work to create dot files.

1

There are 1 best solutions below

0
MatthewMartin On

This works for me.

pipenv install pylint
pipenv shell
pyreverse --help

The magic is that pipenv does a somewhat better job of reloading PATHs to entrypoint commands than other ways to interact with environments.

Pipx would work too.