Hi all! How often do you have version incompatibil...
# ask-anything
e
Hi all! How often do you have version incompatibilities? and how do you approach them? made-up example: you run
pip install pandas
and then try do to:
Copy code
import pandas as pd

pd.read_csv("data.csv")
And you get a
AttributeError: module 'pandas' has no attribute 'read_csv'
error. After some digging, you might find a version mismatch and either determine what's the equivalent function/class in the version you are running or upgrade/downgrade your installation
🙌 4