0
I need someone to comprehensively explain how to install libraries like beautifulsoup and requests onto a windows python console
I downloaded requests and beautifulsoup already. But i cant seem to get them to work. I need explanation that an absolute beginner would understand. None of the explanations online have yielded results for me
4 Respostas
+ 1
To use packages in Python, you should them using pip on the command line(cmd)
For example:
pip search beautifulsoup
pip install requests
0
Do you mean the windows command line? If yes, is that all I have to enter to install it? No other conditions?
0
Yes, I am talking about the windows command line
If you have already installed pip with Python, this should be all
0
Thanks for your help. I finally installed it