2
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?

【初めての人用】 Django アプリケーションフォルダを作る

Posted at

今回やる事

・アプリケーションフォルダをコマンドを実行して作成する

必要な環境

python のインストール
インストールURL
https://python.org/

Djangoをインストールしておく

仮想環境無しでもできるが、仮想環境をおすすめ。

Djangoの環境構築してない人はこっちを先にみると良い
【初めての人用】 Django環境構築 ロケット飛ばすところまで。

自分はwindowsを使っているが、Macの方はターミナル操作のコマンドは各自で調べていただきたい。

とりあえずフォルダに移動してpythonの仮想環境を開く

venv\Scripts\activate.bat   

venvは自分のフォルダの名前

アプリケーションフォルダを作成する

django-admin startapp  django-app

一応補足(以下割愛)、django-Appの部分は作成するフォルダの名前

確認すると

db.sqlite3
django-app
Django_dev 
manage.py

なんかできた。

次回はhtml表示するくらいまでできたらと思う

2
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
2
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?