dosubot[bot] commented on issue #30422:
URL: https://github.com/apache/superset/issues/30422#issuecomment-2380408427
<!-- Answer -->
The `simple-zstd` package relies on the `zstd` executable being available on
your system. Since you're on Windows, you'll need to ensure that `zstd.exe` is
installed and accessible in your system's PATH.
### Steps to Install `zstd` on Windows:
1. **Download `zstd` Executable:**
- Go to the [Zstandard releases
page](https://github.com/facebook/zstd/releases).
- Download the appropriate `zstd` executable for Windows (usually found
in the `zstd-vX.X.X-win64.zip` file).
2. **Extract and Place `zstd.exe`:**
- Extract the contents of the downloaded ZIP file.
- Place `zstd.exe` in a directory that is included in your system's PATH.
Common directories include `C:\Windows\System32` or any other directory that is
already in your PATH.
3. **Add Directory to PATH (if needed):**
- If you placed `zstd.exe` in a custom directory, you need to add this
directory to your system's PATH.
- To do this, follow these steps:
1. Open the Start Menu and search for "Environment Variables".
2. Select "Edit the system environment variables".
3. In the System Properties window, click on the "Environment
Variables" button.
4. In the Environment Variables window, find the "Path" variable in the
"System variables" section and select it.
5. Click "Edit" and then "New" to add the directory where `zstd.exe` is
located.
6. Click "OK" to close all windows.
4. **Verify Installation:**
- Open a new Command Prompt window and run the following command to
verify that `zstd` is accessible:
```sh
where zstd.exe
```
- If the command returns the path to `zstd.exe`, the installation is
successful.
After completing these steps, try running your development server again.
This should resolve the issue with accessing `zstd` on Windows.
<!-- Dosu Comment Footer -->
*To continue talking to [Dosu](https://dosu.dev), mention @dosu.*
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]