Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Added on March 17, 2025 9:57AM
Likes: 0
Replies: 2
What are our options with Dataiku for using .whl files presently stored on our own repository? Can a .whl be a plugin? or is it better to reference the .whl in the code environment?
Operating system used: Almalinux
Simply add your custom Python repository in the Dataiku configuration and then you can install your custom packages in your code environments normally.
Hey,
I have never got how to manage correctly wheels from misc or add "extra options for pip install". So I do it from ‘resources’ section of each env, which allows you to manage your whl files directly in the ressource's environment code directory.
And I add a initialization python script which browses paths and executes the install pip of .whl files from the current code env, /resources/python/code_env_name etc.
I don't even if it's right (as a good practice).