mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-02-02 16:23:58 +03:00
update
This commit is contained in:
parent
9de74281f6
commit
dd01e81e45
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user