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

PycharmでDangoプロジェクトをサーバー起動するまでの設定

Last updated at Posted at 2019-12-09

はじめに

開発環境を最初から構築することになったので概要だけ記録。

環境

Windows 10 Home
PyCharm Community Edition 2019.1.3
python 3.7.3
Django 3.0

手順

PyCharmのインストール

Pythonのインストール

Djangoのインストール

pycharmの下部にterminalタブがあるので、そこで下記コマンドを実行。
バージョン指定無しで最新版をインストール(今回は3.0)

$ pip install django[==バージョン番号]

Djangoプロジェクトの作成

今回はプロジェクト名をsandbox_projectにします。
注意点としてはプロジェクト名はunderscore(_)で単語を繋ぐこと

$ django-admin startproject プロジェクト名

プロジェクトディレクトリに移動して下記コマンドを叩けばもう動きます。

$ python manage.py runserver

ですが、せっかくpycharmにGUIでrunserver(通常/デバッグ)ができるボタンが右上にあるのでその設定をします。
▽ボタンをクリックするとEdit configrationsの画面を開けます。
設定は写真の通り。これで『再生マークを押せば実行』『虫マークを押せばデバッグ実行(ブレークポイントが有効)』が簡単にできるようになりました。

image.png

おわりに

Anacondaは邪教

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?