I’m trying to do projects of beautiful soup by using visual studio code(vscode).
I’m trying to install codecademylib3_seaborn module at vscode terminal but never works.
Does anyone know how to install this module in vscode?
The Python library is Seaborn.
How did you install Python on your computer?
I ask because that would affect how you install Seaborn.
See:
https://seaborn.pydata.org/installing.html
In a notebook you import it like:
import seaborn as sns
1 Like
i did install with pip3
I was able to install seaborn but not codecademylib3_seaborn module…
can you explain me more specifically?
You cannot download or install “codecademylib3_seaborn” because that’s a module that is specific to CC and used in the learning environment (LE).
You can do web scraping projects by installing
from bs4 import BeautifulSoup
import requests
import pandas as pd
import matplotlib.pyplot as plt
import numpy as np
import seaborn as sns;
And, by reading any website’s documentation about scraping their data & if they allow it.
2 Likes
oh I got it thank you so much it helped a lot!!!
1 Like