Python Macでdyld: Library not loaded: /usr/local/opt/openssl/lib/libssl.1.0.0.dylib Macでjupyter notebookを実行しようとしたら表題のエラー opensslが見つからないらしい Homebrewでインストールすると解決したという記事をみつけたのでやってみた brew update # 以下のどちらか bre... 2020.01.03 Python
Python Macのシェルをbashからzshに変えてからpyenv globalでバージョンが切り替わらない Macに入れているpyenvでバージョンを切り替えることができなくなった 公式ドキュメントを見てみる pyenv init してね、と書いてある pyenv init # Load pyenv automatically by append... 2019.12.23 Python
Python 2点の座標の距離を求めるならnumpyよりscipyの方が分かりやすい 2点間距離を求めるプログラムを調べると、numpyのノルムを求める関数を利用したものが多い。例えば import numpy as np x = np.array() y = np.array() answer = np.linalg.no... 2019.12.19 Python
Python matplotlibでA4サイズのfigureを作成する A4でグラフを作ると印刷する時に色々捗るので調べてみた plt.figure(figsize=(11.69,8.27), dpi=100) これでA4サイズと同等である横11.69インチ、縦8.27インチの図表が出来る 参考 2019.11.26 Python
Python matplotlibで大量のfigureを作って怒られる 色んなパターンでグラフを作ってループ処理していた時のこと RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot i... 2019.11.12 Python
Python matplotlibで画像をグリッド状に並べて軸ラベルを消す ディープラーニングでよくみるグリッド上の画像を作りたいのでやってみた from keras.datasets import mnist from matplotlib import pyplot as plt import numpy as... 2019.11.11 Python
Python Pythonのリストをprintした時に出る括弧を消す AtCoderをPythonで解いてみたら、答えはあっているのにWAになってしまった hoge = print(hoge) >> どうやら括弧やカンマがあると正しい答えだと認識してくれないらしい リストに*をつけると要素を展開してくれる便利... 2019.10.19 Python
Python pyenv installでERROR: The Python ssl extension was not compiled. pyenv install 2.7.4 した時に ERROR: The Python ssl extension was not compiled. Missing the OpenSSL lib? Please consult to th... 2019.08.25 Python
Python ImportError: cannot import name ‘Sonnet’が出る pip install Sonnet したのにエラーが出る。 正しくは pip install dm-sonnet 参考 2019.08.05 Python
Python Pythonのscipyで’module’ object has no attribute ‘imread’となる scipyでimreadを使おうとしたらエラーが出た 公式ページを見て調べてみる imread is deprecated! imread is deprecated in SciPy 1.0.0, and will be removed ... 2019.07.16 Python