雑多な技術系メモ

自分用のメモ。内容は保証しません。よろしくお願いします。

2018-06-30から1日間の記事一覧

error: xerces-lib not found.

sudo apt-get install libxerces-c-dev

error: [Errno 2] No such file or directory: 'libtoolize'

sudo apt-get install libtool

error: [Errno 2] No such file or directory: 'aclocal'

sudo apt-get install autotools-dev

zshでのコマンド入力時の注意

以下のようなコマンドをzshで実行すると pip install gym[atari] 以下のようなエラーが発生する zsh: no matches found: gym[atari] かっこ([])などはエラーで引っかかる エスケープする必要がある なので、以下のようにする pip install gym\[atari\]

【Windows】pycharmのterminalをbash(Windows on Bash)に

File -> setting -> Tools -> terminal Shell pathをcmd.exe からbash.exeにする

gitの操作関連のメモ(完全に自分用)

gitの操作方法のメモ remote branchをローカルでチェックアウトする git checkout -b local_branch_name origin/remote_branch_name 参考 https://qiita.com/YusukeSuzuki@github/items/3bd5752783fd2c2f8805