File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
google/cloud/aiplatform/explain Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 29
29
except ImportError :
30
30
raise ImportError (
31
31
"LIT is not installed and is required to get Dataset as the return format. "
32
- 'Please install the SDK using "pip install python -aiplatform[lit]"'
32
+ 'Please install the SDK using "pip install google-cloud -aiplatform[lit]"'
33
33
)
34
34
35
35
try :
36
36
import tensorflow as tf
37
37
except ImportError :
38
38
raise ImportError (
39
39
"Tensorflow is not installed and is required to load saved model. "
40
- 'Please install the SDK using "pip install pip install python -aiplatform[lit]"'
40
+ 'Please install the SDK using "pip install google-cloud -aiplatform[lit]"'
41
41
)
42
42
43
43
try :
44
44
import pandas as pd
45
45
except ImportError :
46
46
raise ImportError (
47
47
"Pandas is not installed and is required to read the dataset. "
48
- 'Please install Pandas using "pip install python -aiplatform[lit]"'
48
+ 'Please install Pandas using "pip install google-cloud -aiplatform[lit]"'
49
49
)
50
50
51
51
You can’t perform that action at this time.
0 commit comments