0
ビジュアルスタジオコードから実行ボタン(またはF5)を押すと自動的にPython http.serverを開始します。 launch.json設定の問題だと思いますが、私はそれに精通していません。 どうすればいいですか?ビジュアルスタジオコードからpython webserverを自動的に起動
ビジュアルスタジオコードから実行ボタン(またはF5)を押すと自動的にPython http.serverを開始します。 launch.json設定の問題だと思いますが、私はそれに精通していません。 どうすればいいですか?ビジュアルスタジオコードからpython webserverを自動的に起動
pythonVSCode拡張機能をインストールしてください。プロジェクトディレクトリにpythonファイルを作成します。それに以下の内容を載せてください。
{
"name": "Documentation",
"type": "python",
"request": "launch",
"stopOnEntry": false,
"pythonPath": "${workspaceRoot}/env/bin/python",
"program": "${workspaceRoot}/your_pyton_run_file.py",
"debugOptions": [
"WaitOnAbnormalExit",
"WaitOnNormalExit",
"RedirectOutput"
]
},
次にあなたがF5
でこれを起動することができます... hereimport http.server
import socketserver
PORT = 8000
Handler = http.server.SimpleHTTPRequestHandler
with socketserver.TCPServer(("", PORT), Handler) as httpd:
print("serving at port", PORT)
httpd.serve_forever()
を参照してください。そして、このような起動構成を作成します