您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關VSCode中autopep8無法運行怎么辦的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
錯誤現象:autopep8無法運行,運行后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
錯誤原因 :
文件路徑中包含有空格!
問題現象:運行autopep8之后,提示插件正常運行,但是代碼沒有任何變化。
問題解決過程:
1.首先在命令行中使用autopep8 文件路徑.py進行測試,運行后命令行中顯示所有代碼,但未格式化文檔。
2.根據運行autopep8的命令幫助以及網絡查詢可知,autopep8運行時應加上--in-place --aggressive參數
命令格式即為 autopep8 --in-place --aggressive 文件路徑名.py
命令行中運行autopep8問題解決!
3.如何在VSCode中為autopep8增加參數?
嘗試在preference>setting中設置autopep8Args,但是無效!
搜索文件找到C:\Users\Administrator\.vscode\extensions\himanoa.python-autopep8-1.0.2目錄,即擴展安裝目錄。
打開extension.js文件。
找到
exec('autopep8 ' + filename, function(error, stdout, stderr){
將其修改為
exec('autopep8 --in-place --aggressive ' + filename, function(error, stdout, stderr){
重啟VSCode,問題解決!
感謝各位的閱讀!關于“VSCode中autopep8無法運行怎么辦”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。