When I import this library:
from sqlitecloud.client import SqliteCloudClient, SqliteCloudAccount
This error occurs:
FileNotFoundError: Could not find module 'C:\Users\sqlite_test\libsqcloud.so' (or one of its dependencies). Try using the full path with constructor syntax.
When I do what is asked it still shows that same error
from sqlitecloud import client
account = client.SqliteCloudAccount(user, password, host, db_name, port)
client_app = client.SqliteCloudClient(cloud_account=account)
conn = client_app.open_connection()
what should I do?
When I import this library:
This error occurs:
FileNotFoundError: Could not find module 'C:\Users\sqlite_test\libsqcloud.so' (or one of its dependencies). Try using the full path with constructor syntax.
When I do what is asked it still shows that same error
what should I do?