How to install a module in Python 3 6

+1 vote
I am new to Python. I want to scrap an e-commerce website and store its results into an excel sheet. For this, i need to import a module called beautiful soup in Python? How can i do it?
Jun 25, 2019 in Python by Neel
• 3,020 points
965 views

1 answer to this question.

+1 vote

If you are using Ubuntu then the module BeatifulSoup is by default installed in it. You can find it using the command :

$ apt-cache search beautifulsoup

If you are using Python 3.x and still are not able to find it then install it using the following command :

$ sudo apt-get install python3-bs4

Once you download it then you can import it by following command

from bs4 import BeautifulSoup    
answered Jun 25, 2019 by Arvind
• 3,040 points

Related Questions In Python

0 votes
1 answer

How to install biopython module in python?

To install biopython on your project, simply ...READ MORE

answered Jul 8, 2019 in Python by Mohammad
• 3,230 points
1,407 views
0 votes
0 answers

How do you install python 3.6 in linux?

I am having trouble choosing interpreter as ...READ MORE

Jul 24, 2019 in Python by Waseem
• 4,540 points
382 views
0 votes
1 answer
0 votes
1 answer

How to dynamically load a module in Python?

Hi, Dynamic loading is where we do not ...READ MORE

answered Jun 26, 2020 in Python by Roshni
• 10,520 points
1,614 views
0 votes
1 answer

How to use BeautifulSoup for Webscraping

Your code is good until you get ...READ MORE

answered Sep 6, 2018 in Python by Priyaj
• 58,090 points
1,954 views
0 votes
1 answer

Crawling after login in Python

You missed a few login data forms, ...READ MORE

answered Sep 7, 2018 in Python by Priyaj
• 58,090 points
1,457 views
0 votes
1 answer

How to download intext images with beautiful soup

Try this: html_data = """ <td colspan="3"><b>"Assemble under ...READ MORE

answered Sep 10, 2018 in Python by Priyaj
• 58,090 points
5,171 views
0 votes
1 answer

Crawling after login in Python

You missed a few login data forms, ...READ MORE

answered Sep 14, 2018 in Python by Priyaj
• 58,090 points
717 views
+1 vote
1 answer

How to convert records from csv to a list in Python?

If you are using Python 3.x then ...READ MORE

answered Jun 25, 2019 in Python by Arvind
• 3,040 points

edited Jun 26, 2019 by Kalgi 9,553 views
0 votes
1 answer

How to find exponent of a number in Python?

Yes you can do it using the ...READ MORE

answered Jul 2, 2019 in Python by Arvind
• 3,040 points
2,057 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP