how do i install the python packages
Repl link:
code snippet
how do i install the python packages
Repl link:
code snippet
Welcome to the community! There are two ways to do this.
poetry
poetry
is Replit’s built-in package manager. Using it adds the package to your Repl’s config and this should be used if you are making a template.
Commands:
poetry add
- installs packagepoetry remove
- uninstalls packagepip
pip
is the traditional Python package manager and does work on Replit (sometimes even when poetry
won’t).
Commands:
pip install
- installs packagepip uninstall
- uninstalls packagePip documentation (pip documentation v23.1) and Poetry documentation (Introduction | Documentation | Poetry - Python dependency management and packaging made easy) for reference