View on GitHub

Visual Studio Code

Home

  1. Visual Studio Codeを起動する。
    (rsl-webgame) $ code
    
    1. File > Open Folderメニューを開く。
      1. /home/rsl/webgame/を選択し、Openボタンをクリックする。
      2. 「Do you trust the authors of the files in this folder?」というメッセージが表示されたら、Yes, I trust the authorsボタンをクリックする。
    2. 左メニューからExtensionsアイコンをクリックする。
      1. Pythonを選択し、Installボタンをクリックする。
    3. View > Command Paletteメニューを開く。
      1. Python: select interpreterをクリックし、Python 3.**.** ('rsl-django')を選択する。
    4. 左メニューからRun and Debugアイコンをクリックする。
      1. create a launch.json fileをクリックする。
      2. Pythonを選択する。
      3. Djangoを選択する。
    5. 上メニューからStart Debuggingボタン(再生ボタン)をクリックする。
    6. ブラウザでhttp://localhost:8000/にアクセスし、「The install worked successfully! Congratulations!」と表示されればOK。

参考

  1. Python and Django tutorial in Visual Studio Code
  2. Django を VSCode で 開発するまでの手順 - Qiita