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

WindowsでDjangoを使う#1

Last updated at Posted at 2019-03-08

#Djangoのインストール方法
今回の記事ではWindowsにDjangoをインストールする方法を書きました。

#前提

  • Pythonダウンロード済み
    • まだの人は、以下URLからダウンロードしてインストールすればオッケー
    • Add Python 3.x to PATHを選択するように
    • https://python.org/downloads/
  • Windows 7, 8, and 10(それ以外はテストされていないらしい)
  • Pythonのバージョンは3.5以上なら問題ないはず

コマンドプロンプトで以下実行すると、バージョン確認できるよ
python --version

#virtualenvwrapperをインストールする
コマンドプロンプトで実行
virtualenvwrapperのインストール
pip install virtualenvwrapper-win

virtualenvの作成 myprojectは好きな名前でいい
mkvirtualenv myproject
workon myproject

#Djangoのインストール
pip install django
完了

(参考)
virtualenvから出る
deactivate

#参考記事
https://docs.djangoproject.com/en/2.1/howto/windows/

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?