Python Forum
Can't install Phython - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Can't install Phython (/thread-24110.html)



Can't install Phython - Ricardo14 - Jan-31-2020

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 :)


RE: Can't install Phython - metulburr - Jan-31-2020

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.