You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Snowflake CLI is a command-line interface (CLI) for Snowflake. You can use Snowflake CLI to interact with the Snowflake emulator. Snowflake CLI provides a set of commands to manage and interact with Snowflake accounts, databases, warehouses, and more.
11
9
12
10
You can connect Snowflake CLI to the Snowflake emulator using a connection profile. A connection profile is a set of parameters that define the connection to a Snowflake account. You can create, list, and test connection profiles using Snowflake CLI.
13
11
14
-
## Installation
15
-
16
-
You can install Snowflake CLI using the following methods:
17
-
18
-
<Tabs>
19
-
<TabItemlabel="PyPI">
20
-
```bash
21
-
pip install snowflake-cli-labs
22
-
snow --help
23
-
```
24
-
</TabItem>
25
-
<TabItemlabel="Homebrew">
26
-
```bash
27
-
brew tap Snowflake-Labs/snowflake-cli
28
-
brew install snowcli
29
-
snow --help
30
-
```
31
-
</TabItem>
32
-
</Tabs>
33
-
34
12
## Configuring Snowflake CLI
35
13
36
14
In this guide, you will learn how to configure Snowflake CLI to interact with the Snowflake emulator using a `localstack` connection profile.
37
15
16
+
:::note
17
+
For installation instructions, follow the [official Snowflake documentation](https://docs.snowflake.com/en/developer-guide/snowflake-cli/installation/installation) for your operating system. This ensures you install the correct and most up-to-date version of the Snowflake CLI.
18
+
:::
19
+
38
20
### Create a connection profile
39
21
40
22
To configure Snowflake CLI to interact with the Snowflake emulator, create a connection profile using the following command:
@@ -50,7 +32,7 @@ snow connection add \
50
32
51
33
You might be prompted to enter more optional parameters, such as the connection port, database name, warehouse name, authentication method, and more. These are however optional and can be skipped.
52
34
53
-
After a successful configuration, you can the `localstack` connection profile is ready to use.
35
+
After a successful configuration, the `localstack` connection profile is ready to use.
0 commit comments