錯(cuò)誤現(xiàn)象:autopep8無法運(yùn)行,運(yùn)行后vscode右下角提示
Error: Command failed: autopep8 c:\Users\Administrator\Desktop\Python\第1章 概述\1-10.py usage: autopep8 [-h] [--version] [-v] [-d] [-i] [--global-config filename] [--ignore-local-config] [-r] [-j n] [-p n] [-a] [--experimental] [--exclude globs] [--list-fixes] [--ignore errors] [--select errors] [--max-line-length n] [--line-range line line] [--hang-closing] [--exit-code] [files [files ...]] autopep8: error: autopep8 only takes one filename as argument unless the "--in-place" or "--diff" args are used
usage: autopep8 [-h] [--version] [-v] [-d] [-i] [--global-config filename] [--ignore-local-config] [-r] [-j n] [-p n] [-a] [--experimental] [--exclude globs] [--list-fixes] [--ignore errors] [--select errors] [--max-line-length n] [--line-range line line] [--hang-closing] [--exit-code] [files [files ...]] autopep8: error: autopep8 only takes one filename as argument unless the "--in-place" or "--diff" args are used
錯(cuò)誤原因 :
文件路徑中包含有空格!
VSCode中autopep8插件運(yùn)行無效問題解決(插件運(yùn)行,但不格式化代碼)
問題現(xiàn)象:運(yùn)行autopep8之后,提示插件正常運(yùn)行,但是代碼沒有任何變化。
問題解決過程:
1.首先在命令行中使用autopep8 文件路徑.py進(jìn)行測試,運(yùn)行后命令行中顯示所有代碼,但未格式化文檔。
2.根據(jù)運(yùn)行autopep8的命令幫助以及網(wǎng)絡(luò)查詢可知,autopep8運(yùn)行時(shí)應(yīng)加上--in-place --aggressive參數(shù)
命令格式即為 autopep8 --in-place --aggressive 文件路徑名.py
命令行中運(yùn)行autopep8問題解決!
3.如何在VSCode中為autopep8增加參數(shù)?
嘗試在preference>setting中設(shè)置autopep8Args,但是無效!
搜索文件找到C:\Users\Administrator\.vscode\extensions\himanoa.python-autopep8-1.0.2目錄,即擴(kuò)展安裝目錄。
打開extension.js文件。
找到
exec('autopep8 ' + filename, function(error, stdout, stderr){
將其修改為
exec('autopep8 --in-place --aggressive ' + filename, function(error, stdout, stderr){
重啟VSCode,問題解決!
到此這篇關(guān)于VSCode中autopep8無法運(yùn)行問題解決方案(提示Error: Command failed,usage)的文章就介紹到這了,更多相關(guān)VSCode autopep8無法運(yùn)行內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- Autopep8的使用(python自動(dòng)編排工具)
- Pycharm配置autopep8實(shí)現(xiàn)流程解析