#Deiteris W-Okada Fork Execute error on Arch Linux

1 messages · Page 1 of 1 (latest)

strange hollow
#

Hi, after extracting all three amd64-rocm archives and executing MMVCServerSIO, it throws the same following error on every attempt to execute :

Traceback (most recent call last):
  File "client.py", line 10, in <module>
  File "PyInstaller/loader/pyimod02_importers.py", line 384, in exec_module
  File "main.py", line 21, in <module>
  File "PyInstaller/loader/pyimod02_importers.py", line 384, in exec_module
  File "downloader/SampleDownloader.py", line 11, in <module>
  File "PyInstaller/loader/pyimod02_importers.py", line 384, in exec_module
  File "voice_changer/RVC/RVCModelSlotGenerator.py", line 5, in <module>
  File "PyInstaller/loader/pyimod02_importers.py", line 384, in exec_module
  File "onnxruntime/__init__.py", line 57, in <module>
  File "onnxruntime/__init__.py", line 23, in <module>
  File "PyInstaller/loader/pyimod02_importers.py", line 384, in exec_module
  File "onnxruntime/capi/_pybind_state.py", line 32, in <module>
ImportError: /storage/voice/MMVCServerSIO/_internal/onnxruntime/capi/onnxruntime_pybind11_state.so: cannot enable executable stack as shared object requires: Invalid argument

and fails to execute the script.

strange hollow
#

Okay for anyone in the future that runs into something similar, the above issue is fixed by installing execstack and running execstack -c on onnxruntime_pybind11_state.so

in my case this threw a new error after attempting to execute the script again ; ImportError: /storage/voice/MMVCServerSIO/_internal/libstdc++.so.6: version 'GLIBCXX_3.4.29' not found (required by /storage/voice/MMVCServerSIO/_internal/onnxruntime/capi/onnxruntime_pybind11_state.so)

replacing the libstdc++.so.6 in _internal with the same package from /usr/lib fixes that and allows it to fully execute and the webserver is accessible

for me once again another error occurred when starting conversion, this time with libgcc_s.so.1 in _internal, so doing the same thing as with libstdc++.so.6 fixes that and now the whole thing is working after that final error

dreamy hound
jagged pine
#

that you are running

#

exec on

#

or the

#

onnxruntime_pybind11_state.so

#

libstdc++.so.6

jagged pine
#

but is in the fork

jovial prism
#

thx imma try now