您好,登錄后才能下訂單哦!
小編給大家分享一下如何解決VSCode配置python環(huán)境及中文問題,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
setting.json
·是設(shè)置語(yǔ)言環(huán)境,launch.json
是設(shè)置執(zhí)行環(huán)境來執(zhí)行代碼,tasks.json
是用來設(shè)置指令編譯代碼
配置python
解釋器,在vscode
界面內(nèi)按下ctrl+shift+p
鍵,輸入python
,選擇python
解釋器(python
屬于解釋語(yǔ)言,不需要編譯成二進(jìn)制中間語(yǔ)言,它是依賴解釋器,解釋一行運(yùn)行一行)
然后選擇python
解釋器路徑,點(diǎn)擊確定后,就會(huì)在當(dāng)前選中的文件夾內(nèi)生成一個(gè).vscode
文件夾且內(nèi)有一個(gè)setting.json
文件
這只是生成一個(gè)setting.json
模板,可以按照自己需求添加,如下
{ "python.pythonPath": "D:\\Anaconda3\\envs\\python3", "workbench.colorTheme": "Monokai", "window.zoomLevel": 0, "explorer.confirmDelete": false, "editor.accessibilitySupport": "off", "editor.formatOnPaste": true, "editor.formatOnSave": false, "editor.formatOnType": false, "editor.showFoldingControls": "mouseover", // 控制編輯器是否顯示縮進(jìn)參考線。 "editor.renderIndentGuides": true, "editor.multiCursorModifier": "ctrlCmd", # 將原來的cmd.exe 替換為bash.exe 因?yàn)楦矚gbash.exe的操作 "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", "terminal.integrated.rendererType": "dom", "workbench.activityBar.visible": true, "python.jediEnabled": false }
在vscode
頁(yè)面點(diǎn)擊運(yùn)行和調(diào)試窗口,點(diǎn)擊創(chuàng)建launch.json
就會(huì)自動(dòng)創(chuàng)建一個(gè)launch.json
文件
{ "version": "0.2.0", "configurations": [ { "name": "Python: 當(dāng)前文件", "type": "python", "request": "launch", "program": "${file}", "console": "integratedTerminal" } ] }
此時(shí)也是在.vscode
文件夾下生成的
或者再次模板上添加
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Python", "type": "python", "request": "launch", "stopOnEntry": false, "program": "${file}", "cwd": "${workspaceRoot}", "env": {}, "envFile": "${workspaceRoot}/.env", "debugOptions": [ "WaitOnAbnormalExit", "WaitOnNormalExit", "RedirectOutput" ] } ] }
在vscode
面板內(nèi)選中 終端
—>配置任務(wù)...
->選擇 使用模板創(chuàng)建 tasks.json
文件
選擇Other
tasks.json文件生成完畢
由于使用的python 3+
版本,默認(rèn)編譯是utf8
,在dos窗口里面可以打印中文,但是在vscode中就不能打印
以 windows
系統(tǒng)為例,添加系統(tǒng)變量,此法可以一勞永逸PYTHONIOENCODING=UTF8
win10
不用配置會(huì)自帶有此命令,如下:
但是win10
可能報(bào)錯(cuò):UnicodeDecodeError:'utf8'
win10中python遇到
UnicodeDecodeError:'utf8' codec can't decode byte 0xd1 in in position 0:invalid的報(bào)錯(cuò)的解決辦法。
解決辦法:
修改win10系統(tǒng)字符集
控制面板>時(shí)鐘和區(qū)域>區(qū)域>管理>更該系統(tǒng)區(qū)域設(shè)置>勾選Beta版: 使用 Unicode UTF-8 提供全球語(yǔ)言支持
但是,此法可能會(huì)讓其他軟件顯示亂碼,如果win10 vscode能輸出中文就不要用此法了
修改task.json
配置
調(diào)出vscode
控制命令面板,選擇配置任務(wù),點(diǎn)擊進(jìn)去
在task.json
中添加如下信息:
"options": { "env":{ "PYTHONIOENCODING": "UTF-8" } }
在每個(gè)需要中文的 python
文件增加信息
import io import sys #改變標(biāo)準(zhǔn)輸出的默認(rèn)編碼 sys.stdout=io.TextIOWrapper(sys.stdout.buffer,encoding='utf8')
以上是“如何解決VSCode配置python環(huán)境及中文問題”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。