Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在我的系统中安装了 pylint。我使用python 3.6。当我从 python 命令调用 pylint 时,我可以看到 pylint。但是当我尝试调用pyreverse时,因为我想用它来创建点文件,系统不识别pyreverse命令。
>>>python >>>pylint >>>pyreverse Not recognized as an internal command.
请问,如何让windows 7系统看到并调用pyreverse。我需要用它来创建点文件。
这对我有用。
pipenv install pylint pipenv shell pyreverse --help
神奇的是,与其他与环境交互的方式相比,pipenv 在将 PATH 重新加载到入口点命令方面做得更好。
Pipx 也可以。