diff --git a/README_dev_en.md b/README_dev_en.md index 5051c3d50..4cd44ff7a 100644 --- a/README_dev_en.md +++ b/README_dev_en.md @@ -68,6 +68,22 @@ $ sudo apt-get install libportaudio2 $ sudo apt-get install libasound-dev ``` +(2) It's not starting up! Damn software! + +The client will not start automatically. Please launch your browser and access the URL displayed on the console. And watch your words. + +(3) Could not load library libcudnn_cnn_infer.so.8 + +When using WSL, you might encounter a message saying `Could not load library libcudnn_cnn_infer.so.8. Error: libcuda.so: cannot open shared object file: No such file or directory`. This often happens because the path hasn't been properly set. Please set the path as shown below. It might be handy to add this to your launch script, such as .bashrc. + +``` +export LD_LIBRARY_PATH=/usr/lib/wsl/lib:$LD_LIBRARY_PATH +``` + +- reference + - https://qiita.com/cacaoMath/items/811146342946cdde5b83 + - https://github.com/microsoft/WSL/issues/8587 + 3. Enjoy developing. ### Appendix diff --git a/README_dev_ja.md b/README_dev_ja.md index 28ff7a6da..c59f421f2 100644 --- a/README_dev_ja.md +++ b/README_dev_ja.md @@ -67,6 +67,23 @@ $ sudo apt-get install libportaudio2 $ sudo apt-get install libasound-dev ``` +(2) 起動しないんだけど!? + +自動でクライアントは起動しません。ブラウザを立ち上げてコンソールに表示された URL にアクセスしてください。 + +(3) Could not load library libcudnn_cnn_infer.so.8 +WSL を使っていると`Could not load library libcudnn_cnn_infer.so.8. Error: libcuda.so: cannot open shared object file: No such file or directory`と表示される場合があります。 +パスが通っていないことが原因のことが多いです。下記のようにパスを通して実行してください。 +.bashrc など起動スクリプトに追加しておくと便利だと思います。 + +``` +export LD_LIBRARY_PATH=/usr/lib/wsl/lib:$LD_LIBRARY_PATH +``` + +- 参考 + - https://qiita.com/cacaoMath/items/811146342946cdde5b83 + - https://github.com/microsoft/WSL/issues/8587 + 3. 開発しましょう ### Appendix