VsCode初心者です。
エディッタでコード記述→コマンドプロンプトに切り替えて入力、エンターで実行
という流れを繰り返すのが手間なので、F5やCtrl+Shitt+B(でしたっけ?)で
conda createで作成した「仮想環境を指定」した上で
pythonを実行できるようにしたいのです。
下記記事を参考にし設定したところ、
https://qiita.com/manamana/items/38e963ce04f24de4bbe4
パスがおかしい?のか実行ができませんでした。
■コンソール画面
■tasks.json
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "python build", "type": "shell", "command": "${config:python.pythonPath}", "args": ["${file}"], "group": { "kind": "build", "isDefault": true } } ] }
pythonの実行環境の作り方をご教示いただけないでしょうか、よろしくお願いいたします。
あなたの回答
tips
プレビュー