How to obtain the installation package (rpm) for the community version?

I downloaded the installation package for timesaledb:
https://download.postgresql.org/pub/repos/yum/15/redhat/rhel-7.5-x86_64/timescaledb_15-2.11.0-1.rhel7.x86_64.rpm

After installation, I attempted to create a materialized view

CREATE MATERIALIZED VIEW WATER-CONSUME.DAY
With (TIMESCALEDB. CONTINUOUS) AS
SELECT
TIME-BUCKET ('1 day ',' time ') AS RECODE-TIME,
MeterCODE,
MAX (DQLJLCC) AS MAX-READING
From WATER-METER1
GROUP BY RECODE-TIME, METER-CODE;

The database threw an error

Error: Functionality not supported under the current “Apache” license Learn more at https://timescale.com/.
Prompt: To access all features and the best time series experience, try out Timescale Cloud

I have reviewed the document.
I found out that I am installing TimescaleDB Apache 2 Edition, but in fact, I should be installing TimescaleDB Community Edition

So where should I get TimescaleDB Community Edition (rpm)?

Hello @NieYuan,

can you try to check the latest updates of this PR: feat: rewrite self-hosted install guide for Linux. by billy-the-fish · Pull Request #3158 · timescale/docs · GitHub

I see in the output it installs the community edition.