LoginSignup
5
4

More than 5 years have passed since last update.

続・Pythonの開発環境整えてみたメモ on Mac OS X

Posted at

続・Pythonの開発環境整えてみたメモ on Mac OS X

pipとDjangoのインストール。
けっこう手順が多くて文量も多くなるかとおもいきや、とてもカンタンだった。

環境:Mac OS X 10.9.4(Mavericks)
前提:homebrewインストール済み & Pythonインストール済み(Pythonインストール手順)

pipをインストール

pipとは、Pythonのパッケージ管理システムらしい。

$ curl -kL https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python

これでインストールできる。が、こちらの環境だとすでにインストール済みだった。
pyenvでPythonをインストールした際に一緒にインストールされたらしい。(Pythonの開発環境整えてみたメモ on Mac OS X)

Djangoのインストール

とてもラクチン

pip install Django == 1.6.5
5
4
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
5
4