ご存知でしたら、ご教授下さい。
VSCODEでdjangoアプリをデバッグしようとしたところ、エラーが発生します。
設定参考:https://freeheroblog.com/vsc-debug/
デバッグの開始をクリックすると下図の赤枠エラーが発生します。解決方法をご存じないでしょうか?
エクスプローラーでC:\Users\fujit\AppData\Local\Programs\Python\Python38\python.exeを叩くと対話モードになります。
設定は下記です。
settings.json
json
1{ 2 "python.pythonPath": "C:\Users\fujit\AppData\Local\Programs\Python\Python38\python.exe", 3 "python.linting.pylintArgs": ["--load-plugins=pylint_django![イメージ説明](c8cc23d813f60121c0a67c1318792aaf.png)"], 4 "[python]": { 5 "editor.formatOnType": true, 6 "editor.formatOnPaste": true, 7 "editor.formatOnSave": true, 8 }, 9 "editor.tabSize": 4, 10 "python.linting.pylintEnabled": false, 11 "python.linting.flake8Enabled": true, 12 "[json]": { 13 14 "editor.quickSuggestions": { 15 "strings": true 16 }, 17 "editor.suggest.insertMode": "replace" 18 }, 19 20 "beautify.language": { 21 "html": [ 22 "htm", "html", "django-html" 23 ] 24 }, 25 26 "terminal.integrated.shell.windows": "C:\Windows\System32\bash.exe", 27 "terminal.integrated.shell.osx": "" 28}
launch.json
json
1{ 2 // IntelliSense を使用して利用可能な属性を学べます。 3 // 既存の属性の説明をホバーして表示します。 4 // 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387 5 "version": "0.2.0", 6 "configurations": [ 7 8 { 9 "type": "python", 10 "request": "launch", 11 "name": "python : Django", 12 "program": "C:\Users\fujit\Desktop\study102-django-tables-main\kadai_project\manage.py", 13 "console": "integratedTerminal", 14 "args":[ 15 "runserver", 16 ], 17 "django":true 18 } 19 ] 20}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。