This topic describes how to connect DataRobot with Domino.
Warning
Use the following commands to install the DataRobot Python client in the Dockerfile instructions section of your environment:
RUN pip install "datarobot==<version>"
To confirm that it installed, run the following commands in your notebook:
import datarobot as dr
dr.Client(token='your_token', endpoint='https://app.datarobot.com/api/v2', ssl_verify = False)
dr.Project.list()
If everything worked, the last command returns the list of projects you have in DataRobot.