试图在Windows 7计算机上安装pep8。因此,我可以使用SublimeLiter作为崇高文本,通过python脚本进行链接。
清除了Python34的安装。签入pip和系统路径选项。
试过:
python pip install pep8.输出:python: can't open file 'pip': [Errno 2] No such file or directoryC:/Python34/get-pip.py install pep8。输出: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 installC:/Python34/get-pip.py install pep8。输出:未找到命令。对如何在windows上安装PEP8有任何建议吗?
发布于 2015-03-31 15:24:44
正如Neitsa所建议的,为了通过-m安装模块,应该使用-m(模块)选项。
以下是CMD的工作解决方案:
python -m pip install pep8给Naitsa的学分。
https://stackoverflow.com/questions/29371951
复制相似问题