LoginSignup
2
3

More than 5 years have passed since last update.

Pythonまとめ

Last updated at Posted at 2015-12-17

pip

pipはPythonのパッケージ管理を行うコマンド

インストール

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

pip自体をアップデート

$ pip install --upgrade pip

パッケージの検索

$ pip search パッケージ名

ライブラリ

json

import json

FILEIN = 'sample_in.json'

f = open(FILEIN, 'r')
data = json.load(f)
f.close()
2
3
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
3