1
2

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

djangoのHP開発環境構築 備忘録

Last updated at Posted at 2018-11-17

手順

  1. python開発環境の事前準備
  2. Djangoのインストール
  3. 開発のあれこれ (記述中)

python開発環境の事前準備

  • python - 3.7.1 (2018/11/17現在)
  • pip - 18.1 (2018/11/17現在)
  • pyenv - 1.2.8 (2018/11/17現在)
  • Homebrew - 1.8.2 (2018/11/17現在)

ここはあくまで事前準備なので適当に...

Homebrewのインストール

$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

最新のコマンドはHPを参照

pyenvのインストール

$ brew install pyenv

pythonのインストール

$ pyenv install [version]

[version]にはインストールしたいpythonのバージョンを記載
$ pyenv install 3.7.6 みたいな

pipのインストール

$ pip --version
pip 18.1 from /hoge/fuga/~~~/pip

プリインストールだとどういう風に表示されるかわからんけどget-pip.pyでインストールするとこんな感じ

$ wget https://bootstrap.pypa.io/get-pip.py
hogehoge保存されました~~~みたいな表示
$ python ./get-pip.py

wgetはHomebrewか何かで別途インストール brew insatll wget

参考文献

事前準備だしいらないよね?

Djangoのインストール

  • Django - 2.1.3 (2018/11/17現在)
$ pip install django
hogehoge~~~~~~
Successfully installed django-2.1.3 pytz-2018.7

インストール自体はこれで終わり
以下,導入確認

$ python
Python 3.7.1 (default, Nov 17 2018, hh:mm:ss) 
[Clang 10.0.0 (clang-1000.10.44.2)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>> print(django.get_version())
2.1.3

参考文献

Django - クイックインストールガイド

開発のあれこれ

不定期で記述中

参考文献 (予定)

Django - はじめての Django アプリ作成

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?