This topic describes how to connect directly to DataRobot from Domino. You must have network connectivity between DataRobot and your Domino deployment.
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.
-
After connecting to your Data Source, learn how to Use Data Sources.
-
Share this Data Source with your collaborators.