Python package chainlit won't install in project

Problem description:
cant install chainlit in a fresh python project. Replit says it installs but does not really install it

Expected behavior:
clicking install installs the chainlit python package.

Actual behavior:
click install gives the “installed” toast but does not actually install the package.

Steps to reproduce:
open a new python project and go to the packages tab and search and install chainlit

Bug appears at this link:
https://replit.com/@PaulLockett/chainlitImageGenPricing

Browser/OS/Device:
Website

Try poetry add chainlit and pip install -U chainlit

1 Like

This works but chainlit conflits with the replit package

Unless you are using it, uninstall it (poetry remove replit)

1 Like

Add requests first (poetry add requests), or else poetry will stop working.

2 Likes