Error installing rasa-pro because of rasa-pro 0.0.1.post1 on PyPI

Hello! I’m kinda new to Python so I might be wrong, but even after adding

[[tool.poetry.source]]
name = "rasa-pro"
url = "https://europe-west3-python.pkg.dev/rasa-releases/rasa-pro-python/simple"
priority = "supplemental"

to my pyproject.toml (I’m following the docs at Installation for local development), when I try to install rasa-pro using poetry add rasa-pro it is trying to install rasa-pro (0.0.1.post1), probably because this is the version that is up at rasa-pro · PyPI

Is there any workaround for that? It doesn’t seem like this rasa-pro (0.0.1.post1) should be there.

I have the same issue. But I’m trying to install rasa-pro with pip. At start it shows “Looking in indexes: Simple index, https://europe-west3-python.pkg.dev/rasa-releases/rasa-pro-python/simple/” At finish it shows " RuntimeError: You are installing rasa-pro from pypi.org, which will not work. Please make sure you are installing from the Rasa python package registry. More information can be found at Installation for local development" There are two hypotheses:

  1. https://europe-west3-python.pkg.dev/rasa-releases/rasa-pro-python/simple/ is not available
  2. License key is not installed correctly.

In your poetry config, it’s important to indicate that the rasa pro package is pulled from the artifact repository:

...

[tool.poetry.dependencies]
python = ">=3.8.1,<3.11"
rasa-pro = { version = "3.9.4", source = "rasa-pro-python" }

[[tool.poetry.source]]
name = "rasa-pro-python"
url = "https://europe-west3-python.pkg.dev/rasa-releases/rasa-pro-python/simple"
priority = "supplemental"

...