1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

概要

VSCodeでDjangoの環境を構築する方法や手順について

Djangoの環境を構築する手順

①VSCodeでUbuntuを起動し、ターミナルから以下の2つのコマンドを実行して環境を最新にする

sudo apt-get update
sudo apt-get upgrade

②仮想環境を以下のコマンドにより作成

python3 -m venv sample

lsコマンドでsampleが作成されていることを確認できる
image.png

③ファイルを実行する
sourceはファイルを実行するという意味。引数はどのファイルを実行するか

source sample/bin/activate

④Djangoのインストール

pip install django==バージョン数

image.png

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?