我似乎无法找到解决此问题的方法...
我使用以下命令在运行 Python2.7 的 Mac OSX 10.10.5 上安装了 autopep8:
$ pip install autopep8
但是,当我尝试autopep8
在这样的文件上运行任何命令时:
$ autopep8 --in-place --aggressive --aggressive testfile.py
我明白了:
-bash: autopep: command not found
我试图确认autopep8
是通过以下方式安装的:
>>> try:
... import autopep8
... print "this is installed"
... except ImportError:
... print "no module"
...
this is installed
我也卸载并重新安装autopep8
了pep8
几次,但无济于事。我还应该尝试什么或我做错了什么?