1
3

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 基礎3 pipによるサードパーティーモジュールのインストール方法

Last updated at Posted at 2018-03-21

#これまで

・【初学者向け】Python 基礎1 関数定義と呼び出し
・【初学者向け】Python 基礎2 ブロックとfor文if文

間違いやもっと良い方法などありましたらご指摘頂けると嬉しいです。

▽環境
Python 3.6.4

#pip
Pythonで例えばエクセルを読み込んだり書き込んだりするためにはデフォルトのモジュールだけでは足りず、「openpyxl」というモジュールをインストールする必要があります。(importして使う)

pipを使えば簡単にモジュールのインストールができます。

###pip自体が入っているか確認

コマンドプロンプト
C:\>py -m pip --version
pip 9.0.2 from C:\Python\Python36\lib\site-packages (python 3.6)

Python導入時に自動的に入っているようです。

###openpyxlのインストール

コマンドプロンプト
C:\>pip install openpyxl

  ~
   100% |████████████████████████████████| 1.4MB 546kB/s
  ~こんな感じでインストールされる

※プロキシ設定されているとpip時にエラーが出る場合がある
5回ほどRetry後、こんなエラー

Could not find a version that satisfies the requirement

業務で使いたいのに会社でツールが作れない;

その場合は↓の3つのtar.gzをダウンロードしてsetup.pyでinstallすればOK

openpyxl
jdcal
ex_xmlfile

python setup.py install

#openpyxl

階層
lib/
└ site-packages/
  └ openpyxl/

1
3
2

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
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?