#manually install
!pip install great_expectations==1.0.0
#running this code
import great_expectations as gx
Create an in-memory (ephemeral) Great Expectations context
context = gx.get_context()
Add the expectation suite to the context using the correct method
context.add_or_update_expectation_suite(expectation_suite)
#Getting this error
Created temporary directory '/tmp/tmpo7tbt48o' for ephemeral docs site
`---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
Cell In[82], line 7
4 context = gx.get_context()
6 # Add the expectation suite to the context using the correct method
----> 7 context.add_or_update_expectation_suite(expectation_suite)
AttributeError: ‘EphemeralDataContext’ object has no attribute ‘add_or_update_expectation_suite’`
Can someone please assist…