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
This is discussed here in the context of vscode-jupyter extension microsoft/vscode-jupyter#8803
it doesn't work in kernel with 3.10.2 when debugging both VSCode and Jupyter Lab (callstack is empty, Jupyter 3.2.9)
When coming back to 3.9.10 everything is ok
I used pyenv virtualenv pyenv install 3.10.2 and makefile to create separate environment
# count the number of mouse in list of devices
devices = ['laptop','mouse', 'mouse', 'charger', 'mouse', 'keyboard', 'mouse']
mouse_count = 0
for device in devices:
if device.upper() == 'MOUSE':
mouse_count += 1
print(f"mouse count : {mouse_count}")
I check with the latest git main branch and it doesn't work too
I am on MacOS 12.3 (M1)
The text was updated successfully, but these errors were encountered:
This is discussed here in the context of vscode-jupyter extension microsoft/vscode-jupyter#8803
it doesn't work in kernel with 3.10.2 when debugging both VSCode and Jupyter Lab (callstack is empty, Jupyter 3.2.9)
When coming back to 3.9.10 everything is ok
I used pyenv virtualenv
pyenv install 3.10.2
and makefile to create separate environmentCode used for debugging in Jupyter Notebook
I check with the latest git main branch and it doesn't work too
I am on MacOS 12.3 (M1)
The text was updated successfully, but these errors were encountered: