try:
import pandas
except:
print("You did not install pandas, let me do it for you")
import os
os.system("pip install pandas")
Here is some cursed error handling
try:
import pandas
except:
print("You did not install pandas, let me do it for you")
import os
os.system("pip install pandas")
Here is some cursed error handling
all 2 comments