pipによるインストール
1 |
> pip install <モジュール名> |
1 |
> pip install numpy |
アカウント名に日本語(2バイト文字)を使用するとエラーがでる
pip installの際にUnicodeDecodeErrorが出る。
phthonに設定されているエンコードの確認
1 2 3 4 |
> python >>> import sys >>> sys.getdefaultencoding() 'ascii' |
上記の場合”ascii”のエンコードに設定されている。
デフォルトの設定を変更する
python2.7.11の場合、フォルダ”C:\Python27\Lib\site-packages”に「sitecustomize.py」というファイルを作成。
「sitecustomize.py」の中身は
1 2 |
import sys sys.setdefaultencoding("shift-jis") |
上記は”shift-jis”に設定。
エンコードは
utf_8
shift_jis
euc_jp
iso2022_jp
等。
コメント