Python Forum

Full Version: Can't install Phython
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi there! How are you? Hope you're fine

I was trying to install Phython on my machine to run a script. I downloaded requests-2.22.0 and beautifulsoup4-4.8.2

However, I tried to install them but I got thid

https://prnt.sc/qvkf5d

WHat am mI missing?

Thank you :)
1st: please post code on the forum not the images of it.

You dont really need to download them directly anymore. Just use pip which is in python installation.

to install beautifulsoup 4
pip install bs4

to install requests
pip install requests

check here for more information.