VSCode中autopep8無法運行問題解決方案(提示Error: Command failed,usage)
錯誤現象: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
錯誤原因 :
文件路徑中包含有空格!
VSCode中autopep8插件運行無效問題解決(插件運行,但不格式化代碼)
問題現象:運行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無法運行問題解決方案(提示Error: Command failed,usage)的文章就介紹到這瞭,更多相關VSCode autopep8無法運行內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- pycharm配置安裝autopep8自動規范代碼的實現
- python Autopep8實現按PEP8風格自動排版Python代碼
- 詳解golang執行Linux shell命令完整場景下的使用方法
- golang 執行命令行的實現
- Golang執行cmd命令行的方法