0
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 CommunityでDjangoをインストールする方法

Last updated at Posted at 2021-10-10

#無料版だとコマンドラインで環境を作る

PyCharm Community番だと、新しいプロジェクトからDjangoを作れないので、
コマンドライン上でDjangoプロジェクトを作る必要があります。

だいたいこんな感じ

#Python仮想環境をインストールする

まず、Python仮想環境を起動します。JavaでいうJava仮想マシンみたいな感じですね
このコマンドで、プロジェクトのディレクトリにenvフォルダが出来るはずです。

.bash
python -m venv env 

image.png

#仮想環境を起動する

次にインストールした仮想環境を起動します

.bash
env\Scripts\activate

すると、PowerShellの右側に(env)マークが出来るので
これが仮想マシン上で動いていることが分かるはずです。

image.png

#Djangoのインストール

次にDjangoをインストールして

.bash
pip install django

プロジェクトテンプレートを作成します

.bash
django-admin startproject pycharmtut

(この時、ウィルスソフトが反応することがありますが無視)

manage.pyを含む下記フォルダが出来ていたら完成です

image.png

無事、起動画面も作成できました!ヾ(。>﹏<。)ノ゙✧*。

image.png

こんな感じで、無料版でもDjangoプロジェクトは作成できます!
どんどんWebサービスを作っていしまいましょう!

参考記事

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