You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be very useful to be able to change the default kernel. For example, by supporting >>kernelname
to change to the specified kernel until otherwise specified.
cell 1 switches to sql kernel
>>sql select * from t1
cell 2 continues with sql kernel
select * from t2
cell 3 python
>python print("Hello Jupyter");
cell 4 back to sql
select * from t3
cell 5 back to python until changed
>>python print("Hello Europa");
cell 6 continues with python
print("Hello Io");
The text was updated successfully, but these errors were encountered:
jdundondev
changed the title
Support to changing default kernel
Support for changing default kernel
May 31, 2020
It would be very useful to be able to change the default kernel. For example, by supporting
>>kernelname
to change to the specified kernel until otherwise specified.
cell 1 switches to sql kernel
>>sql
select * from t1
cell 2 continues with sql kernel
select * from t2
cell 3 python
>python
print("Hello Jupyter");
cell 4 back to sql
select * from t3
cell 5 back to python until changed
>>python
print("Hello Europa");
cell 6 continues with python
print("Hello Io");
The text was updated successfully, but these errors were encountered: