在 Windows 上安装 pep8
Installing pep8 on Windows
正在尝试在 Windows 7 机器上安装 pep8。所以我可以使用 SublimeLiter for Sublime Text 来检查 python 脚本。
已清除 Python34 的安装。检查 pip 和 系统路径 选项。
尝试过:
- 运行
python pip install pep8
。输出:python: can't open file 'pip': [Errno 2] No such file or directory
- 已从 https://pip.pypa.io/en/latest/installing.html 和 运行
C:/Python34/get-pip.py install pep8
下载 get-pip.py。输出:
Collecting install
Could not find any downloads that satisfy the requirement install
Some externally hosted files were ignored as access to them may be unreliable
(use --allow-external install to allow).
No distributions at all found for install
C:/Python34/get-pip.py install pep8
。输出:找不到命令。
关于如何在 windows 上安装 PEP8 的任何建议?
正如 Neitsa 所建议的那样,Windows 应该使用 -m(模块)选项以便通过 PiP 安装模块。
这是 CMD 中的工作解决方案:
python -m pip install pep8
感谢 Naitsa。
正在尝试在 Windows 7 机器上安装 pep8。所以我可以使用 SublimeLiter for Sublime Text 来检查 python 脚本。
已清除 Python34 的安装。检查 pip 和 系统路径 选项。
尝试过:
- 运行
python pip install pep8
。输出:python: can't open file 'pip': [Errno 2] No such file or directory
- 已从 https://pip.pypa.io/en/latest/installing.html 和 运行
C:/Python34/get-pip.py install pep8
下载 get-pip.py。输出:Collecting install Could not find any downloads that satisfy the requirement install Some externally hosted files were ignored as access to them may be unreliable (use --allow-external install to allow). No distributions at all found for install
C:/Python34/get-pip.py install pep8
。输出:找不到命令。
关于如何在 windows 上安装 PEP8 的任何建议?
正如 Neitsa 所建议的那样,Windows 应该使用 -m(模块)选项以便通过 PiP 安装模块。
这是 CMD 中的工作解决方案:
python -m pip install pep8
感谢 Naitsa。