1
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 3 years have passed since last update.

【自分用メモ】Python3 + Django 学習メモ

Posted at

はじめに

Python3 + Djangoの自分用学習メモです。
殴り書きしています。
学習したら随時更新していく予定。

環境

mac
python 3.7.3
Django 3.1

Pythonのインストール

mac の場合はプリインストールされている。特定のバージョンを使用したい場合は公式サイトからダウンロード
アナコンダ版があるため注意

Djangoのインストール

sudo Pip3 install Django==3.1
=> OK

pip install Django==3.1
エラーになる

pip3 install Django==3.1
=> Permission エラーになる
sudo つける

Project 作成

django-admin startproject プロジェクト名

ローカルWEBサーバー起動

ローカルでテストする場合は内蔵のWEBサーバーを利用することが可能.
初期状態であれば http://localhost:8000/ で接続できればOK

python3 manage.py runserver
停止する時は control + c  

アプリケーションを作る

python3 manage.py startapp アプリ名

to be continued……

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