Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
w-okada committed Jul 26, 2023
1 parent 9de7428 commit dd01e81
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README_dev_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
17 changes: 17 additions & 0 deletions README_dev_ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit dd01e81

Please sign in to comment.