タグ付けされた質問 「vscode-debugger」

2
特定のモジュールをVSコードでデバッグするように正しく設定するにはどうすればよいですか?
私はVSコードのウェブサイトの指示に従っていましたが、私が試したものは何もうまくいかなかったようです。 必要に応じて新しい構成を作成しましたが、パスを配置すると、VSコードでの動作が拒否されますが、手動で呼び出すと、統合ターミナルウィンドウでVSコードが問題を報告します。 デバッガーがスローするエラーは次のとおりです。 (automl-meta-learning) brandomiranda~/automl-meta-learning/automl/experiments ❯ env PTVSD_LAUNCHER_PORT=59729 /Users/brandomiranda/miniconda3/envs/automl-meta-learning/bin/python /Users/brandomiranda/.vscode/extensions/ms-python.python-2020.2.63072/pythonFiles/lib/python/new_ptvsd/wheels/ptvsd/launcher -m /Users/brandomiranda/automl-meta-learning/automl/experiments/experiments_model_optimization.py E+00000.025: Error determining module path for sys.argv Traceback (most recent call last): File "/Users/brandomiranda/.vscode/extensions/ms-python.python-2020.2.63072/pythonFiles/lib/python/new_ptvsd/wheels/ptvsd/../ptvsd/server/cli.py", line 220, in run_module spec = find_spec(options.target) File "/Users/brandomiranda/miniconda3/envs/automl-meta-learning/lib/python3.7/importlib/util.py", line 94, in find_spec parent = __import__(parent_name, fromlist=['__path__']) ModuleNotFoundError: No module named '/Users/brandomiranda/automl-meta-learning/automl/experiments/experiments_model_optimization' Stack where …

2
Visual Studioコードデバッガーエラー:「タスク 'gcc build active file'が見つかりませんでした」
Ubuntu Linuxを使用してVisual Studio CodeでC / C ++ワークスペースを構成しようとしていますが、デバッガーを正しく動作させる方法がわかりません。インターネットから「tasks.json」ファイルをコピーして、F5キーを押してコードをコンパイルできるようにしましたが、デバッグモードに入ろうとするたびにエラー「Couldタスク「gcc build active file」がポップアップしません。ここに2つのjsonがあります:tasks.json { "version": "2.0.0", "tasks": [ { "label": "debug", "type": "shell", "command": "", "args": [ "g++", "-g", "${relativeFile}", "-o", "a.exe" ] }, { "label": "Compile and run", "type": "shell", "command": "", "args": [ "g++", "-g", "${relativeFile}", "-o", "${fileBasenameNoExtension}.out", "&&", "clear", "&&", …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.