2
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?

いつ頃からか、pythonで標記のエラーが出るようになった。

今週中にpythonで確認すべきこと山盛(作らなきゃいけないことじゃないだけまだまし)

「ゼロから作るDeep Learning 2自然言語処理編」を読む前に読んで置くとよい資料とプログラム
https://qiita.com/kaizen_nagoya/items/537b1810265bbbc70e73
4月13日(金)まで。

どうしよう。

python
$ python forward_net.py 
Error in sitecustomize; set PYTHONVERBOSE for traceback:
KeyError: 'PYTHONPATH'

ネット検索

「keyError」「PYTHONPATH」検索

pyenvが壊れた?PYTHONPATHエラーでPython3.xが起動時に2.xのモジュールを参照する件
https://qiita.com/xaskg/items/690ce9048e708de41166

第一段階 brew doctor

上記サイトとは状況が違う。
https://researchmap.jp/jo3xrahkx-2078500/#_2078500

python関連の課題は見当たらない。

site.pyについて書いている。

第二段階 site.py from @xaskg

機材の中のsite.pyを検索

find / -name site.py -print

/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site.py
/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/py2app/bundletemplate/lib/site.py
/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/py2app/apptemplate/lib/site.py
/Users/ogawakiyoshi/Desktop/certc_/c_puzzle_book/Gifu/portabletools/LibreOfficePortable/App/libreoffice/program/python-core-2.6.1/lib/site.py
/Users/ogawakiyoshi/Desktop/めも/rtl/spa/portabletools/LibreOfficePortable/App/libreoffice/program/python-core-2.6.1/lib/site.py

2.7と2.6.1。まず2.6.1の2つのsite.pyの比較をする。

$ diff /Users/ogawakiyoshi/Desktop/certc_/c_puzzle_book/Gifu/portabletools/LibreOfficePortable/App/libreoffice/program/python-core-2.6.1/lib/site.py /Users/ogawakiyoshi/Desktop/めも/rtl/spa/portabletools/LibreOfficePortable/App/libreoffice/program/python-core-2.6.1/lib/site.py

差がないことを確認。
https://researchmap.jp/joylgv5ql-2078500/#_2078500
site.pyを別に記録して削除

$ rm /Users/ogawakiyoshi/Desktop/certc_/c_puzzle_book/Gifu/portabletools/LibreOfficePortable/App/libreoffice/program/python-core-2.6.1/lib/site.py
$ rm /Users/ogawakiyoshi/Desktop/めも/rtl/spa/portabletools/LibreOfficePortable/App/libreoffice/program/python-core-2.6.1/lib/site.py

第三段階python -v from @xaskg

$ python -v
* snip *
 File "/usr/local/lib/python2.7/site-packages/sitecustomize.py", line 15, in <module>
    str(sys.version_info[0]) + '.x!\n     PYTHONPATH is currently: "' + str(os.environ['PYTHONPATH']) + '"\n' +
* snip *

python3なのにpython2の記述がある。

第四段階 site customize.py

python2に関する行を削除するか、このファイルを削除するか。

cd /usr/local/lib/python2.7/site-packages
rm sitecustomize.py

今週は、忙しいからまず削除。2.7はまたあとで考えよう。
「ゼロから作るDeep Learning 2自然言語処理編」を読む前に読んで置くとよい資料とプログラム
https://qiita.com/kaizen_nagoya/items/537b1810265bbbc70e73

金曜までにpython3動かして意見を書かなきゃ。

$ python
Python 3.6.0 |Anaconda 4.3.0 (x86_64)| (default, Dec 23 2016, 13:19:00) 
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

ひとまず無事作業再開。

謝辞

site.py
python -v
に着目できたのは、xaskgさんの記事による。
エラーの原因、対策は違っても、関係するファイル、設定などに類似点があることを確認。xaskgさんの記事がなかったら、半日では解決していなかった。ありがとうございました。

#p.s.
GPUの入ったwindowsにもanaconda導入し、実験。
ネットのエラーでanacondaの導入に半日かかった。
pip installでネットのエラーがまたでた。
そこでこの記事の作業に戻ったって。

明日はネットのエラー原因探し。

GPU搭載端末利用顛末(1日目・2日目)'SSLError(SSLError(1, '[SSL: CERTIFICATE_VERIFY_FAIL ED] certificate verify failed (_ssl.c:777)'),)'

https://qiita.com/kaizen_nagoya/items/149cae9df7adbf2df1cc
<この記事は個人の過去の経験に基づく個人の感想です。現在所属する組織、業務とは関係がありません。>

文書履歴(document history)

ver. 0.01 初稿  20180417
ver. 0.02 ありがとう追記 20230513

最後までおよみいただきありがとうございました。

いいね 💚、フォローをお願いします。

Thank you very much for reading to the last sentence.

Please press the like icon 💚 and follow me for your happy life.

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?