0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Djangoをインストールしてみました。

Last updated at Posted at 2023-10-06

Djangoについてはこちら
https://ja.wikipedia.org/wiki/Django

Djangoをインストールしてみたのでメモ代わりに手順を残しました。

1.VENVE(仮想環境)を作成しておきます。
  仮想環境とは、、、説明はこちら
  https://www.sejuku.net/blog/68423

  コマンドプロンプトを立ち上げて以下のコマンドを打ち、仮想環境を作成します。
  python -m venv 仮想環境名
無題.jpg
 ここでいうと仮想環境は「python-test」となります。

結果を確認してみましょう。今作成した「python-test」のディレクトリの中を覗いてみます
無題.jpg
上手くできていますね。
Scriptsというディレクトリに移動します。
無題.jpg

2.仮想環境をアクティベイトします。
  activate と入力し実行します。無題.jpg
頭に仮想環境名が表示されていれば成功です。
無題.jpg

3.Djangoをインストールします。
  pip install django と入力し実行します。
  うまくできました。
無題.jpg

4.activeteを解除するコマンドは deactivateと入力し実行します。
  仮想環境が終了します。

5.pythonを終了するのは
  exit()と入力し実行すると終了します。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?