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.

MacでDjangoのプロジェクトを作る参考サイト

Last updated at Posted at 2022-02-24

開発環境

Mac(M1)
Python3.8
VSCode

Pythonのインストール

Homebrew

pyenv

python

Pythonがインストールされているか確認

python -V

きちんとバージョンが返ってきたらOK。

pipは?

pipも最新化してバージョンを確認しておく。

pip -V

VSCodeはこちらでインストール

Djangoのインストール

こちらのPython仮想環境の作成から進めます。

次回起動時のコマンド

djangoサーバを動かすために手順があります。

venvファイルがあるフォルダに移動し、venvを起動する。

source venv/bin/activate

manage.pyがあるフォルダに移動。

cd フォルダ名

manage.pyを起動する

python3 manage.py runserver
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?