Issue with CloudQuery installation on Ubuntu local environment

Hi team,

I’ve been trying to install CloudQuery on my Ubuntu local using this command and getting the following error. Can someone lend a helping hand on this?

Cc: <@586969139118342147>

Hi @positive-monster, are you trying to install the CloudQuery CLI or the CloudQuery Python SDK?
The SDK is available via

pip3 install cloudquery-plugin-sdk

and the CLI via this link.
More about the Python SDK can be found here.

Hi @erez,

Thank you for the response. Initially, I tried to install CloudQuery CLI using the following commands in Ubuntu:

curl -L https://github.com/cloudquery/cloudquery/releases/download/cli-v3.26.1/cloudquery_linux_amd64 -o cloudquery
chmod a+x cloudquery

But it is just downloading the package. The install command is nowhere mentioned. That’s why I tried to install SDK using

pip3 install cloudquery

Hi @positive-monster,

You should be able to run the CLI via

./cloudquery

It won’t be installed globally via the cURL command, only locally to the directory you ran it.

You can add it globally via the $PATH environment variable depending on your shell type.

We won’t publish the CLI as a Python executable as it’s written in Go.

Ok, I’ll try this one. Thanks for the support @erez.