Hey @<1582542029752111104:profile|GorgeousWoodpecker69> can you please tell whether you're running this jupyter notebook as part of a repo or as a standalone file, and what command did you run to launch your clearml-agent?
I could get rid of the error message not by adding
!pip install jupyter
But now the task starts and never finishes. I think it's because it starts a Jupyter Kernel in ClearML instead of just executing the code in my Notebook. Is there any configuration to tell ClearML it should just execute the code of the notebook remotely?
After reading the docs, is execute_remotely supported to be run from a notebook?
I executed the following code in a notebook:
from clearml import Task
task = Task.init(project_name='Test', task_name="TEST NOTEBOOK")
task.execute_remotely(queue_name="RTX A6000")
print("HELLO")
I ran the notebook as a standalone file. I don't have the exact start command, but it runs in docker mode on ubuntu 22.04 using the standard image. Is there anything to consider which might be related to the described issue?
I created a ticket for the issue with a more detailed explanation and log file: None
Hi @<1582542029752111104:profile|GorgeousWoodpecker69> , can you elaborate please on the exact steps you took?
I looked at your task log on the github issue. It seems the main issue is that your notebook is Not stored as python code. Are you running it on jupyter notebook or is it ipython that you are runnig it on? Is this reproducible? If so what's the jupyter version, python and OS versions?