1.デフォルトの文字コード指定
1-1.path to python/Lib/site-packages
でsitecustomize.pyを作成
~/path to python/Lib/site-packages
$ touch sitecustomize.py
1-2.下記コードを記載
文字コードは、公式サイトを参考にする。
sitecustomize.py
import sys
sys.setdefaultencoding('utf-8')
Go to list of users who liked
More than 3 years have passed since last update.
1.デフォルトの文字コード指定
1-1.path to python/Lib/site-packages
でsitecustomize.pyを作成
~/path to python/Lib/site-packages
$ touch sitecustomize.py
1-2.下記コードを記載
文字コードは、公式サイトを参考にする。
import sys
sys.setdefaultencoding('utf-8')
Register as a new user and use Qiita more conveniently
Go to list of users who liked