arboreto icon indicating copy to clipboard operation
arboreto copied to clipboard

AttributeError

Open ghost opened this issue 7 years ago • 2 comments

Hi, I tried the Example 01 - GRNBoost2 local, https://nbviewer.jupyter.org/github/tmoerman/arboreto/blob/master/notebooks/examples/ex_01_grnboost2_local.ipynb, and I got the following error: AttributeError Traceback (most recent call last) in () 1 import os ----> 2 from arboreto.algo import grnboost2, genie3

D:\Anaconda\lib\site-packages\arboreto\algo.py in () 4 5 import pandas as pd ----> 6 from distributed import Client, LocalCluster 7 from arboreto.core import create_graph, SGBM_KWARGS, RF_KWARGS, EARLY_STOP_WINDOW_LENGTH 8

D:\Anaconda\lib\site-packages\distributed_init_.py in () 1 from future import print_function, division, absolute_import 2 ----> 3 from . import config 4 from dask.config import config 5 from .actor import Actor, ActorFuture

D:\Anaconda\lib\site-packages\distributed\config.py in () 11 from .compatibility import logging_names 12 ---> 13 config = dask.config.config 14 15

AttributeError: module 'dask' has no attribute 'config'

ghost avatar Nov 02 '18 07:11 ghost

This is most likely an issue with the dask and distributed versions in your installation. The first thing I would try is updating both packages using the conda package manager.

tmoerman avatar Nov 02 '18 08:11 tmoerman

Thank you prompt reply

ghost avatar Nov 02 '18 09:11 ghost