Reputation: 1
I did :
pip install boruta
it worked perfectly fine and it got installed. But when i try to run
from Boruta import BorutaPy
it gives an error : No module named 'Boruta'. Please help.
Upvotes: 0
Views: 3162
Reputation: 3
run pip show boruta
this will show information about boruta of course but if it shows no module named boruta found
run pip install boruta
. If the module is found then uninstall it [pip uninstall boruta
] and reinstall it
also run pip freeze
to list all the modules.
in installation you run pip install boruta
and in your file you just used from Boruta import BorutaPy
Upvotes: 0