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

Python Tools 2.2 for Visual Studio(PTVS2.2)でDjango

Posted at

#Python Tools 2.2 for Visual Studioとは
2015年にリリースしたバージョンになります。VisualStudio上でPythonのIDEとしての機能を追加するためのプラグインです。PTVSはWebアプリケーションに限らずスタンドアロンのPythonアプリケーション開発でも利用が可能です。(参照)

#Visual Studio2015でDjango1.8を実行
PTVSを利用してDjangoをAzure上のデータベースなどと連携することができます。とりあえず、ここではWindows上でVisual Studio2015にDjango1.8を実行させます。
###Visual Studio2015 Communityのインストール
Visual Studio2015 CommunityをWindows上にインストールする。
1.png
###Python Tools 2.2 for Visual Studio
ここでPTVSをインストールしてください。噂によるとVS2015では標準で入っているらしいです。
2.png
###Visual Studio2015でDjangoプロジェクト作成
Visual Studioを実行し、
【Start】➡️【New Project...】➡️【Python/Web】➡️【Django Web Project】
Nameをつけて【OK】をしてプロジェクトを作成します。
3.png

すると下のようになるので特に変更がなければ【Create】する。
4.png

最後に実行をすると自分であるとFirefoxが実行しDjangoの画面が開く
5.png

#Error
1.Create後に実行するとcannot import name patternsとエラーが起きて実行できない。
➡️pipでpatternsをインストールしてもうまくいかないので調べるとDjangoのバージョンがデフォルトだとDjango1.10になっているのでうまく行かなかった!

よって、【env(右クリック)】➡️【Install Python Package..】を選択し、
django==1.8 (Linux: pip install django==1.8)と括弧内に入力することでDjango1.10をUninstallし、改めてDjango1.8を再インストールしてくれる。
スクリーンショット 2016-10-07 13.38.50.png

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