[Software Tips] Error/Warning Fixes
最終更新日:2022年10月7日(初版作成日:2022年10月7日)
ssh時にperl: warning: Setting locale failed.
sshで接続先(サーバー等)に、接続元(ローカル)のlocaleを引き継ごうとするが、できなくて警告が出ている。
引き継ごうとする設定を削除またはコメントアウトする。具体的には、/etc/ssh/ssh_configのSendEnv LANG LC_*をコメントアウトする。
【TensorFlow】TypeError: _logger_find_caller() takes from 0 to 1 positional arguments but 2 were given
TypeError: _logger_find_caller() takes from 0 to 1 positional arguments but 2 were given
AttributeError: module ‘tensorflow’ has no attribute ‘placeholder’
RuntimeError: tf.placeholder() is not compatible with eager execution.
AttributeError: module ‘tensorflow’ has no attribute ‘layers’
上記のようなエラーが出る場合、”import tensorflow as tf”の宣言部分を以下のように変更すると2系を使いながら、1系で製作されたプログラムを実行できる
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
tf.disable_eager_execution()
【Python】<Response [200]> (requests.getの返り値)
print(result_of_requests_get);ではなく
print(result_of_requests_get.text);とする
【bash/awk】awk: bailing out at source line
bashのfor文の書き方に問題がある、余計なスペースがあるとこのエラーになる
【css/html】cssの変更が反映されない
ブラウザにデータが残っているので、一旦それを削除する
【TeX/Mathjax】そのまま表示される
カッコが合っていない
改訂履歴
2022年10月07日:初版作成