【M1MacでVC Clientのエラー 】node:5101) electron: Failed to load URL: http://localhost:18888/ with error: ERR_CONNECTION_REFUSED
- 2023.06.21
- IT

VC Clientを使おうとしたら、下記のようにportに接続できないというエラーが表示されました。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
Last login: Wed Jun 21 16:29:20 on ttys000 /Applications/MMVCServerSIO_mac_onnxcpu-nocuda_v.1.5.3.5a/startHttp.command ; exit; test@tests-Air ~ % /Applications/MMVCServerSIO_mac_onnxcpu-nocuda_v.1.5.3.5a/startHttp.command ; exit; Booting PHASE :__main__ Voice Changerを起動しています。 ++[Voice Changer] model_dir is already exists. skil download samples. Internal_Port:18888 protocol: HTTP -- ---- -- ブラウザで次のURLを開いてください. http://<IP>:<PORT>/ 多くの場合は次のいずれかのURLにアクセスすると起動します。 http://localhost:18888/ Preparing your application. Please wait... (node:5101) electron: Failed to load URL: http://localhost:18888/ with error: ERR_CONNECTION_REFUSED (Use `voice-changer-native-client --trace-warnings ...` to show where the warning was created) Preparing your application. Please wait... (node:5101) electron: Failed to load URL: http://localhost:18888/ with error: ERR_CONNECTION_REFUSED Preparing your application. Please wait... |
解決方法
とても簡単なのですが、ターミナルで、ファイルに権限を付与してあげます。
1 |
test@tests-Air MMVCServerSIO_mac_onnxcpu-nocuda_v.1.5.3.5a % chmod +x startHttp.command |