How do i use pip install on the glitch console?

i want to install requests with pip install but i don’t know how, anyone knows how to?

Hello @Jarno,

The easiest way is to start with a python-based glitch starter app- we have a few listed here: https://glitch.com/@python. You can remove the packages you don’t want from requirements.txt, but if you add packages you do want to that file (like requests), glitch will use pip to automatically install them for you!

Or…

Try the --user prefix to install it locally

Eg- pip install virtualenv --user