Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TypeError: init() got an unexpected keyword argument 'include_webui' #183

Open
free-soellingeraj opened this issue Aug 26, 2020 · 1 comment

Comments

@free-soellingeraj
Copy link

free-soellingeraj commented Aug 26, 2020

I followed the directions installing the tutorial.

>>> ray.__version__
'0.8.7'

File: exercise01-Introduction.ipynb

When running:
ray.init(num_cpus=4, ignore_reinit_error=True, include_webui=False)

Error:

---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-9-d0a3ab5afed5> in <module>
----> 1 ray.init(num_cpus=4, ignore_reinit_error=True, include_webui=False)

TypeError: init() got an unexpected keyword argument 'include_webui'

Probably due to deprecation of that option.

@free-soellingeraj
Copy link
Author

free-soellingeraj commented Aug 26, 2020

Fix: changed to

ray.init(num_cpus=4, ignore_reinit_error=True, include_dashboard=False)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant