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

Cannot change conda environment when excuting command line in notebook #14947

Closed
themaigod opened this issue Dec 21, 2023 · 7 comments
Closed
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug info-needed Issue requires more information from poster notebook-execution Kernels issues (start/restart/switch/execution, install ipykernel)

Comments

@themaigod
Copy link

themaigod commented Dec 21, 2023

Environment data

  • VS Code version: Version: 1.85.1
  • Jupyter Extension version (available under the Extensions sidebar): v2023.11.1003402403
  • Python Extension version (available under the Extensions sidebar): v2023.22.1
  • OS (Windows | Mac | Linux distro) and version: Windows
  • Remote OS: Ubuntu
  • Python and/or Anaconda version: 3.10
  • Type of virtual environment used (N/A | venv | virtualenv | conda | ...): conda
  • Jupyter server running: Remote

Expected behaviour

use another conda environment to excute a py file in command line

Actual behaviour

still in a current notebook environment.

Steps to reproduce:

  1. Install vscode and required extensions
  2. (In remote,) Create a conda environment called "jupyterbug" in python 3.10 and install jupyter notebook (pip install notebook)
  3. (In remote,) Create a conda environment called "jupyterbugexcute" in python 3.10
  4. Create a new ".ipynb" file in remote, and select kernel "jupyterbug"
  5. excute
environment = '. /opt/anaconda3/etc/profile.d/conda.sh && conda activate jupyterbugexcute && '
# detect which python
command = '{}python -c "import sys; print(sys.executable)"'.format(environment)
!{command} # you can also import os and excute os.system(command)
  1. Result is /home/user3/.conda/envs/jupyterbug/bin/python which is not expected.
  2. (Compared:) If we activate a jupyter kernel in jupyterbug, and select it as notebook kernel, the result is: /home/user3/.conda/envs/jupyterbugexcute/bin/python
    which is expected
  3. Another comparison I tried in local windows environment by excuting
environment = 'conda activate jupyterbugexcute && '
command = '{}python -c "import sys; print(sys.executable)"'.format(environment)
!{command}

Result is C:\ProgramData\anaconda3\envs\jupyterbugexcute\python.exe which is expected.

@themaigod themaigod added the bug Issue identified by VS Code Team member as probable bug label Dec 21, 2023
@DonJayamanne
Copy link
Contributor

Please could you enable logging as follows:

  • Open settings & go into Jupyter->Logging
  • Change the value to verbose
  • Reload VS Code,
  • Attempt to repro the issue & then copy the output from the Jupyter output panel.

@DonJayamanne DonJayamanne added info-needed Issue requires more information from poster notebook-execution Kernels issues (start/restart/switch/execution, install ipykernel) labels Dec 21, 2023
@themaigod
Copy link
Author

Sorry for delay

Visual Studio Code (1.85.1, ssh-remote, desktop)
Jupyter Extension Version: 2023.11.1003402403.
Python Extension Version: 2023.22.1.
Pylance Extension Version: 2023.12.1.
Platform: linux (x64).
Workspace folder ~/maiqi/video_combine, Home = /home/user3
22:06:26.710 [debug] Get Custom Env Variables, Class name = _m (started execution), Arg 1: undefined, Arg 2: "RunPythonCode"
22:06:26.712 [info] Start refreshing Kernel Picker (1703167586712)
22:06:26.716 [info] Using Pylance
22:06:26.788 [debug] Preferred Remote kernel for ~/maiqi/video_combine/jupyterbug.ipynb is undefined
22:06:26.967 [debug] UniversalRemoteKernelFinder: Writing 1 remote kernel connection metadata to cache
22:06:26.978 [debug] UniversalRemoteKernelFinder: Writing 1 remote kernel connection metadata to cache
22:06:27.025 [warn] Password for http://127.0.0.1:8840/ was invalid.
22:06:27.076 [warn] Password for http://127.0.0.1:8892/ was invalid.
22:06:27.093 [warn] Password for http://127.0.0.1:8893/ was invalid.
22:06:27.169 [debug] Disposing Jupyter Lab Helper
22:06:27.169 [debug] SessionManager - dispose contents manager
22:06:27.169 [debug] ShutdownSessionAndConnection - dispose session manager
22:06:27.170 [debug] Finished disposing Jupyter Lab Helper
22:06:27.170 [debug] UniversalRemoteKernelFinder: Writing 3 remote kernel connection metadata to cache
22:06:27.172 [warn] Password for http://localhost:8850/ was invalid.
22:06:27.177 [debug] Disposing Jupyter Lab Helper
22:06:27.177 [debug] SessionManager - dispose contents manager
22:06:27.177 [debug] ShutdownSessionAndConnection - dispose session manager
22:06:27.177 [debug] Finished disposing Jupyter Lab Helper
22:06:27.177 [debug] UniversalRemoteKernelFinder: Writing 3 remote kernel connection metadata to cache
22:06:27.179 [debug] Disposing Jupyter Lab Helper
22:06:27.179 [debug] SessionManager - dispose contents manager
22:06:27.179 [debug] ShutdownSessionAndConnection - dispose session manager
22:06:27.179 [debug] Finished disposing Jupyter Lab Helper
22:06:27.180 [debug] UniversalRemoteKernelFinder: Writing 3 remote kernel connection metadata to cache
22:06:27.196 [warn] Password for http://127.0.0.1:8891/ was invalid.
22:06:27.709 [debug] Get Custom Env Variables, Class name = _m, completed in 1000ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunPythonCode"
22:06:27.710 [debug] Jupyter Paths /kernels: 
22:06:27.710 [debug] Kernel Spec Root Paths, /usr/share/jupyter/kernels, /usr/local/share/jupyter/kernels, ~/.local/share/jupyter/kernels
22:06:27.717 [debug] Disposing Jupyter Lab Helper
22:06:27.717 [debug] SessionManager - dispose contents manager
22:06:27.717 [debug] ShutdownSessionAndConnection - dispose session manager
22:06:27.717 [debug] Finished disposing Jupyter Lab Helper
22:06:27.717 [debug] UniversalRemoteKernelFinder: Writing 3 remote kernel connection metadata to cache
22:06:27.723 [debug] Search for KernelSpecs in Interpreter ~/.conda/envs/mediapipe/bin/python
22:06:27.724 [debug] Finding Global Python KernelSpecs
22:06:27.727 [debug] Search for KernelSpecs in Interpreter /usr/bin/python
22:06:27.728 [debug] Search for KernelSpecs in Interpreter /usr/bin/python3
22:06:27.728 [debug] Search for KernelSpecs in Interpreter /usr/bin/python3.6
22:06:27.729 [debug] Search for KernelSpecs in Interpreter /opt/anaconda3/bin/python
22:06:27.730 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/user_zyy/bin/python
22:06:27.730 [debug] Search for KernelSpecs in Interpreter /opt/anaconda3/envs/R_env/bin/python
22:06:27.731 [debug] Search for KernelSpecs in Interpreter /opt/anaconda3/envs/ben_env/bin/python
22:06:27.732 [debug] Search for KernelSpecs in Interpreter /opt/anaconda3/envs/my_env/bin/python
22:06:27.732 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/aigc/bin/python
22:06:27.733 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/ben_env_copy/bin/python
22:06:27.734 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/cloth/bin/python
22:06:27.734 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/fate/bin/python
22:06:27.735 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/gcrn/bin/python
22:06:27.735 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/graphLearning/bin/python
22:06:27.736 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/graphLearning2/bin/python
22:06:27.737 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/hatespeechdetection/bin/python
22:06:27.737 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/hyphen/bin/python
22:06:27.738 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/jodie/bin/python
22:06:27.738 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/lanceEnv/bin/python
22:06:27.739 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/llama/bin/python
22:06:27.740 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/llama2/bin/python
22:06:27.740 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/mrp_hs/bin/python
22:06:27.741 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/nli_hs/bin/python
22:06:27.741 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/old_mm/bin/python
22:06:27.742 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/reddit/bin/python
22:06:27.743 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/reddittrain/bin/python
22:06:27.743 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/test/bin/python
22:06:27.744 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/test2/bin/python
22:06:27.745 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/test3/bin/python
22:06:27.745 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/torch-env/bin/python
22:06:27.746 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/torch118/bin/python
22:06:27.747 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/transFG_env/bin/python
22:06:27.747 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/twitter/bin/python
22:06:27.748 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/unsullied/bin/python
22:06:27.749 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/vcombine/bin/python
22:06:27.750 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/ymirEnv/bin/python
22:06:27.751 [debug] Search for KernelSpecs in Interpreter ~/.conda/envs/R/bin/python
22:06:27.751 [debug] Search for KernelSpecs in Interpreter ~/.conda/envs/gaze/bin/python
22:06:27.752 [debug] Search for KernelSpecs in Interpreter ~/.conda/envs/gazetrack/bin/python
22:06:27.753 [debug] Search for KernelSpecs in Interpreter ~/.conda/envs/lix_env/bin/python
22:06:27.754 [debug] Search for KernelSpecs in Interpreter ~/.conda/envs/test/bin/python
22:06:27.755 [debug] Search for KernelSpecs in Interpreter ~/.conda/envs/test2/bin/python
22:06:27.756 [debug] Search for KernelSpecs in Interpreter ~/.conda/envs/test3/bin/python
22:06:27.757 [debug] Search for KernelSpecs in Interpreter ~/.conda/envs/vcombine/bin/python
22:06:27.757 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/fashionformer/bin/python
22:06:27.758 [debug] Search for KernelSpecs in Interpreter /home/user2/.conda/envs/iamge2text/bin/python
22:06:27.759 [debug] Search for KernelSpecs in Interpreter ~/.conda/envs/jupyterbug/bin/python
22:06:27.760 [debug] Search for KernelSpecs in Interpreter ~/.conda/envs/jupyterbugexcute/bin/python
22:06:27.763 [debug] Full interpreter list is length: 49, /usr/bin/python::Unknown:/usr/bin/python, /usr/bin/python3::Unknown:/usr/bin/python3, /usr/bin/python3.6::Unknown:/usr/bin/python3.6, /opt/anaconda3/bin/python:base:Conda:/opt/anaconda3/bin/python, /home/user2/.conda/envs/user_zyy/bin/python:user_zyy:Conda:/home/user2/.conda/envs/user_zyy/bin/python, /opt/anaconda3/envs/R_env/bin/python:R_env:Conda:/opt/anaconda3/envs/R_env/bin/python, /opt/anaconda3/envs/ben_env/bin/python:ben_env:Conda:/opt/anaconda3/envs/ben_env/bin/python, /opt/anaconda3/envs/my_env/bin/python:my_env:Conda:/opt/anaconda3/envs/my_env/bin/python, /home/user2/.conda/envs/aigc/bin/python:aigc:Conda:/home/user2/.conda/envs/aigc/bin/python, /home/user2/.conda/envs/ben_env_copy/bin/python:ben_env_copy:Conda:/home/user2/.conda/envs/ben_env_copy/bin/python, /home/user2/.conda/envs/cloth/bin/python:cloth:Conda:/home/user2/.conda/envs/cloth/bin/python, /home/user2/.conda/envs/fate/bin/python:fate:Conda:/home/user2/.conda/envs/fate/bin/python, /home/user2/.conda/envs/gcrn/bin/python:gcrn:Conda:/home/user2/.conda/envs/gcrn/bin/python, /home/user2/.conda/envs/graphLearning/bin/python:graphLearning:Conda:/home/user2/.conda/envs/graphLearning/bin/python, /home/user2/.conda/envs/graphLearning2/bin/python:graphLearning2:Conda:/home/user2/.conda/envs/graphLearning2/bin/python, /home/user2/.conda/envs/hatespeechdetection/bin/python:hatespeechdetection:Conda:/home/user2/.conda/envs/hatespeechdetection/bin/python, /home/user2/.conda/envs/hyphen/bin/python:hyphen:Conda:/home/user2/.conda/envs/hyphen/bin/python, /home/user2/.conda/envs/jodie/bin/python:jodie:Conda:/home/user2/.conda/envs/jodie/bin/python, /home/user2/.conda/envs/lanceEnv/bin/python:lanceEnv:Conda:/home/user2/.conda/envs/lanceEnv/bin/python, /home/user2/.conda/envs/llama/bin/python:llama:Conda:/home/user2/.conda/envs/llama/bin/python, /home/user2/.conda/envs/llama2/bin/python:llama2:Conda:/home/user2/.conda/envs/llama2/bin/python, /home/user2/.conda/envs/mrp_hs/bin/python:mrp_hs:Conda:/home/user2/.conda/envs/mrp_hs/bin/python, /home/user2/.conda/envs/nli_hs/bin/python:nli_hs:Conda:/home/user2/.conda/envs/nli_hs/bin/python, /home/user2/.conda/envs/old_mm/bin/python:old_mm:Conda:/home/user2/.conda/envs/old_mm/bin/python, /home/user2/.conda/envs/reddit/bin/python:reddit:Conda:/home/user2/.conda/envs/reddit/bin/python, /home/user2/.conda/envs/reddittrain/bin/python:reddittrain:Conda:/home/user2/.conda/envs/reddittrain/bin/python, /home/user2/.conda/envs/test/bin/python:test:Conda:/home/user2/.conda/envs/test/bin/python, /home/user2/.conda/envs/test2/bin/python:test2:Conda:/home/user2/.conda/envs/test2/bin/python, /home/user2/.conda/envs/test3/bin/python:test3:Conda:/home/user2/.conda/envs/test3/bin/python, /home/user2/.conda/envs/torch-env/bin/python:torch-env:Conda:/home/user2/.conda/envs/torch-env/bin/python, /home/user2/.conda/envs/torch118/bin/python:torch118:Conda:/home/user2/.conda/envs/torch118/bin/python, /home/user2/.conda/envs/transFG_env/bin/python:transFG_env:Conda:/home/user2/.conda/envs/transFG_env/bin/python, /home/user2/.conda/envs/twitter/bin/python:twitter:Conda:/home/user2/.conda/envs/twitter/bin/python, /home/user2/.conda/envs/unsullied/bin/python:unsullied:Conda:/home/user2/.conda/envs/unsullied/bin/python, /home/user2/.conda/envs/vcombine/bin/python:vcombine:Conda:/home/user2/.conda/envs/vcombine/bin/python, /home/user2/.conda/envs/ymirEnv/bin/python:ymirEnv:Conda:/home/user2/.conda/envs/ymirEnv/bin/python, ~/.conda/envs/R/bin/python:R:Conda:~/.conda/envs/R/bin/python, ~/.conda/envs/gaze/bin/python:gaze:Conda:~/.conda/envs/gaze/bin/python, ~/.conda/envs/gazetrack/bin/python:gazetrack:Conda:~/.conda/envs/gazetrack/bin/python, ~/.conda/envs/lix_env/bin/python:lix_env:Conda:~/.conda/envs/lix_env/bin/python, ~/.conda/envs/test/bin/python:test:Conda:~/.conda/envs/test/bin/python, ~/.conda/envs/test2/bin/python:test2:Conda:~/.conda/envs/test2/bin/python, ~/.conda/envs/test3/bin/python:test3:Conda:~/.conda/envs/test3/bin/python, ~/.conda/envs/vcombine/bin/python:vcombine:Conda:~/.conda/envs/vcombine/bin/python, /home/user2/.conda/envs/fashionformer/bin/python:fashionformer:Conda:/home/user2/.conda/envs/fashionformer/bin/python, /home/user2/.conda/envs/iamge2text/bin/python:iamge2text:Conda:/home/user2/.conda/envs/iamge2text/bin/python, ~/.conda/envs/mediapipe/bin/python:mediapipe:Conda:~/.conda/envs/mediapipe/bin/python, ~/.conda/envs/jupyterbug/bin/python:jupyterbug:Conda:~/.conda/envs/jupyterbug/bin/python, ~/.conda/envs/jupyterbugexcute/bin/python:jupyterbugexcute:Conda:~/.conda/envs/jupyterbugexcute/bin/python
22:06:27.767 [debug] Getting activated env variables, Class name = Ip (started execution), Arg 1: "~/maiqi/video_combine", Arg 2: "~/.conda/envs/mediapipe/bin/python", Arg 3: undefined
22:06:27.767 [debug] Get Custom Env Variables, Class name = _m (started execution), Arg 1: "~/maiqi/video_combine", Arg 2: "RunPythonCode"
22:06:27.768 [debug] Get Custom Env Variables, Class name = _m, completed in 1ms, has a truthy return value, Arg 1: "~/maiqi/video_combine", Arg 2: "RunPythonCode"
22:06:27.986 [debug] Kernels for interpreter /usr/bin/python are .jvsc74a57bd0767d51c1340bd893661ea55ea3124f6de3c7a262a8b4abca0554b478b1e2ff90./usr/bin/python./usr/bin/python.-m#ipykernel_launcher
22:06:27.987 [debug] Kernels for interpreter /usr/bin/python3 are .jvsc74a57bd031f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6./usr/bin/python3./usr/bin/python3.-m#ipykernel_launcher
22:06:27.988 [debug] Kernels for interpreter /usr/bin/python3.6 are .jvsc74a57bd030295c5bec572e859485b1ffa5e89b8b3e2022ef6e3e739c1ac40f143a557caf./usr/bin/python3.6./usr/bin/python3.6.-m#ipykernel_launcher
22:06:27.988 [debug] Kernels for interpreter /opt/anaconda3/envs/ben_env/bin/python are .jvsc74a57bd094c1db93d02bea20b8f2acaaa615ded70e3a9b7e4e52bc233f52496028f53be8./opt/anaconda3/envs/ben_env/python./opt/anaconda3/envs/ben_env/python.-m#ipykernel_launcher
22:06:27.989 [debug] Kernels for interpreter /opt/anaconda3/envs/my_env/bin/python are .jvsc74a57bd089f7ce0305d306ba19b38a3fc9695c3cbba07c36c3c8b96a74497a6d0d7d4653./opt/anaconda3/envs/my_env/python./opt/anaconda3/envs/my_env/python.-m#ipykernel_launcher
22:06:27.990 [debug] Kernels for interpreter /home/user2/.conda/envs/fate/bin/python are .jvsc74a57bd0d33738b82a3db58f9429873d5d2e92e44eea0f231b7fd238d9d3643275a64edf./home/user2/.conda/envs/fate/python./home/user2/.conda/envs/fate/python.-m#ipykernel_launcher
22:06:27.990 [debug] Kernels for interpreter /home/user2/.conda/envs/gcrn/bin/python are .jvsc74a57bd024b8bb5babe2747bfc90efeae3c6a1944b6155e5d24ebe7dbb248251a2ef4227./home/user2/.conda/envs/gcrn/python./home/user2/.conda/envs/gcrn/python.-m#ipykernel_launcher
22:06:27.991 [debug] Kernels for interpreter /home/user2/.conda/envs/hatespeechdetection/bin/python are .jvsc74a57bd0fd92570b4a1589825e2f4cde32f8c52547449b844788291a704d9499db687779./home/user2/.conda/envs/hatespeechdetection/python./home/user2/.conda/envs/hatespeechdetection/python.-m#ipykernel_launcher
22:06:27.991 [debug] Kernels for interpreter /home/user2/.conda/envs/hyphen/bin/python are .jvsc74a57bd02766ff5e0cb92f3d2880ae2207631f7a0701969b190b6eec14b906eb015b88f1./home/user2/.conda/envs/hyphen/python./home/user2/.conda/envs/hyphen/python.-m#ipykernel_launcher
22:06:27.991 [debug] Kernels for interpreter /home/user2/.conda/envs/jodie/bin/python are .jvsc74a57bd0713cd6474b4252a2bb21bca2884641d2986200162cbe10a08a7157f96cd2246b./home/user2/.conda/envs/jodie/python./home/user2/.conda/envs/jodie/python.-m#ipykernel_launcher
22:06:27.992 [debug] Kernels for interpreter /home/user2/.conda/envs/lanceEnv/bin/python are .jvsc74a57bd05229e6336f0d35aa9f64cb9339baae705706391a0d26b58769d2bda28d082075./home/user2/.conda/envs/lanceEnv/python./home/user2/.conda/envs/lanceEnv/python.-m#ipykernel_launcher
22:06:27.992 [debug] Kernels for interpreter /home/user2/.conda/envs/llama/bin/python are .jvsc74a57bd041493aae1c33e83dcf615134a43363f2e43d0a25786cb57ba3ef629127b346cb./home/user2/.conda/envs/llama/python./home/user2/.conda/envs/llama/python.-m#ipykernel_launcher
22:06:27.993 [debug] Kernels for interpreter /home/user2/.conda/envs/mrp_hs/bin/python are .jvsc74a57bd0d2de96728745a50d74f03b4b3422c0e0ccd8fa4fe74093e5582e2ffc674736fc./home/user2/.conda/envs/mrp_hs/python./home/user2/.conda/envs/mrp_hs/python.-m#ipykernel_launcher
22:06:27.993 [debug] Kernels for interpreter /home/user2/.conda/envs/reddit/bin/python are .jvsc74a57bd084cda7a3c5b5d91eaddff5c693ccc9ec73067915805b975228a44d62397c95e6./home/user2/.conda/envs/reddit/python./home/user2/.conda/envs/reddit/python.-m#ipykernel_launcher
22:06:27.994 [debug] Kernels for interpreter /home/user2/.conda/envs/test/bin/python are .jvsc74a57bd01623edee565f4a371b35845f5e738906b62373bf968744153ba4695b782271c4./home/user2/.conda/envs/test/python./home/user2/.conda/envs/test/python.-m#ipykernel_launcher
22:06:27.994 [debug] Kernels for interpreter /home/user2/.conda/envs/test2/bin/python are .jvsc74a57bd0eadce03027e9cf8786a1fc461c8597ba92e44e315430fee3b97cbd5ff3acbf53./home/user2/.conda/envs/test2/python./home/user2/.conda/envs/test2/python.-m#ipykernel_launcher
22:06:27.994 [debug] Kernels for interpreter /home/user2/.conda/envs/test3/bin/python are .jvsc74a57bd0e0585ed82f1d98cf63e88ddc260f10692ea82de6baf02c52e723f1d39693b648./home/user2/.conda/envs/test3/python./home/user2/.conda/envs/test3/python.-m#ipykernel_launcher
22:06:27.995 [debug] Kernels for interpreter /home/user2/.conda/envs/torch118/bin/python are .jvsc74a57bd0493e3a6056b9fd665d3d8d0b6db66bcbb39ca167fc0d55770c3481adeb47b815./home/user2/.conda/envs/torch118/python./home/user2/.conda/envs/torch118/python.-m#ipykernel_launcher
22:06:27.995 [debug] Kernels for interpreter /home/user2/.conda/envs/transFG_env/bin/python are .jvsc74a57bd050a901627852dd2363102c9da4aab3ebdeb9194e5552735c3528dcc2348bb07d./home/user2/.conda/envs/transFG_env/python./home/user2/.conda/envs/transFG_env/python.-m#ipykernel_launcher
22:06:27.996 [debug] Kernels for interpreter ~/.conda/envs/gaze/bin/python are .jvsc74a57bd0e3ff917f54175a148623ca5b2dfaa48ccc0e3d91d32ffbb5b99d70f8cbb4d514.~/.conda/envs/gaze/python.~/.conda/envs/gaze/python.-m#ipykernel_launcher
22:06:27.996 [debug] Kernels for interpreter ~/.conda/envs/gazetrack/bin/python are .jvsc74a57bd0bf0c69463ce7251c98aa222c90cab68e1aac3236257452e28f9c214ce6cb163e.~/.conda/envs/gazetrack/python.~/.conda/envs/gazetrack/python.-m#ipykernel_launcher
22:06:27.996 [debug] Kernels for interpreter ~/.conda/envs/lix_env/bin/python are .jvsc74a57bd01bcef2ea5d04ce686d21b74b6d360970b9d33eb454c3b621cbc28d26a93e145c.~/.conda/envs/lix_env/python.~/.conda/envs/lix_env/python.-m#ipykernel_launcher
22:06:27.997 [debug] Kernels for interpreter ~/.conda/envs/test/bin/python are .jvsc74a57bd01cdfa3cd0810da6cb5311bf9e2a80ce2d9e664f4979a7e14990d58e983f82f0d.~/.conda/envs/test/python.~/.conda/envs/test/python.-m#ipykernel_launcher
22:06:28.002 [debug] Kernels for interpreter ~/.conda/envs/test2/bin/python are .jvsc74a57bd0e38e62ac326ebbba2f285bdfbbc3df7125036ebd8b0e5ed75463ebfc49710d58.~/.conda/envs/test2/python.~/.conda/envs/test2/python.-m#ipykernel_launcher
22:06:28.002 [debug] Kernels for interpreter ~/.conda/envs/test3/bin/python are .jvsc74a57bd03673e3882c5e2d0c02b4698dabcf128af010bee92271efe88157b6453292a6bd.~/.conda/envs/test3/python.~/.conda/envs/test3/python.-m#ipykernel_launcher
22:06:28.003 [debug] Kernels for interpreter ~/.conda/envs/jupyterbugexcute/bin/python are .jvsc74a57bd0839b4f26dcd446053d9f750c36329fd0a3283510f3202f930099dd149d979eb6.~/.conda/envs/jupyterbugexcute/python.~/.conda/envs/jupyterbugexcute/python.-m#ipykernel_launcher
22:06:28.006 [debug] Disposing Jupyter Lab Helper
22:06:28.006 [debug] SessionManager - dispose contents manager
22:06:28.006 [debug] ShutdownSessionAndConnection - dispose session manager
22:06:28.006 [debug] Finished disposing Jupyter Lab Helper
22:06:28.006 [debug] UniversalRemoteKernelFinder: Writing 5 remote kernel connection metadata to cache
22:06:28.022 [debug] Kernels for interpreter /home/user2/.conda/envs/user_zyy/bin/python are .jvsc74a57bd030aee4583c49d581afd00e8e04348fdcf145c61ed163efb08566220f30efddad./home/user2/.conda/envs/user_zyy/python./home/user2/.conda/envs/user_zyy/python.-m#ipykernel_launcher
22:06:28.031 [debug] Loading kernelspec from /usr/share/jupyter/kernels/python3/kernel.json 
22:06:28.031 [debug] Loading kernelspec from ~/.local/share/jupyter/kernels/python3/kernel.json 
22:06:28.035 [debug] Disposing Jupyter Lab Helper
22:06:28.035 [debug] SessionManager - dispose contents manager
22:06:28.035 [debug] ShutdownSessionAndConnection - dispose session manager
22:06:28.035 [debug] Finished disposing Jupyter Lab Helper
22:06:28.035 [debug] UniversalRemoteKernelFinder: Writing 10 remote kernel connection metadata to cache
22:06:28.037 [debug] Disposing Jupyter Lab Helper
22:06:28.037 [debug] SessionManager - dispose contents manager
22:06:28.037 [debug] ShutdownSessionAndConnection - dispose session manager
22:06:28.038 [debug] Finished disposing Jupyter Lab Helper
22:06:28.038 [debug] UniversalRemoteKernelFinder: Writing 10 remote kernel connection metadata to cache
22:06:28.039 [debug] Loading kernelspec from ~/.conda/envs/mediapipe/share/jupyter/kernels/python3/kernel.json for ~/.conda/envs/mediapipe/bin/python
22:06:28.039 [debug] Loading kernelspec from /opt/anaconda3/share/jupyter/kernels/python3/kernel.json for /opt/anaconda3/bin/python
22:06:28.050 [debug] Loading kernelspec from /opt/anaconda3/envs/R_env/share/jupyter/kernels/ir/kernel.json for /opt/anaconda3/envs/R_env/bin/python
22:06:28.050 [debug] Loading kernelspec from /opt/anaconda3/envs/R_env/share/jupyter/kernels/python3/kernel.json for /opt/anaconda3/envs/R_env/bin/python
22:06:28.051 [debug] Loading kernelspec from /home/user2/.conda/envs/aigc/share/jupyter/kernels/python3/kernel.json for /home/user2/.conda/envs/aigc/bin/python
22:06:28.051 [debug] Loading kernelspec from /home/user2/.conda/envs/ben_env_copy/share/jupyter/kernels/python3/kernel.json for /home/user2/.conda/envs/ben_env_copy/bin/python
22:06:28.051 [debug] Loading kernelspec from /home/user2/.conda/envs/cloth/share/jupyter/kernels/python3/kernel.json for /home/user2/.conda/envs/cloth/bin/python
22:06:28.051 [debug] Loading kernelspec from /home/user2/.conda/envs/graphLearning/share/jupyter/kernels/python3/kernel.json for /home/user2/.conda/envs/graphLearning/bin/python
22:06:28.052 [debug] Loading kernelspec from /home/user2/.conda/envs/graphLearning2/share/jupyter/kernels/python3/kernel.json for /home/user2/.conda/envs/graphLearning2/bin/python
22:06:28.052 [debug] Loading kernelspec from /home/user2/.conda/envs/llama2/share/jupyter/kernels/python3/kernel.json for /home/user2/.conda/envs/llama2/bin/python
22:06:28.052 [debug] Loading kernelspec from /home/user2/.conda/envs/nli_hs/share/jupyter/kernels/python3/kernel.json for /home/user2/.conda/envs/nli_hs/bin/python
22:06:28.053 [debug] Loading kernelspec from /home/user2/.conda/envs/old_mm/share/jupyter/kernels/python3/kernel.json for /home/user2/.conda/envs/old_mm/bin/python
22:06:28.053 [debug] Loading kernelspec from /home/user2/.conda/envs/reddittrain/share/jupyter/kernels/python3/kernel.json for /home/user2/.conda/envs/reddittrain/bin/python
22:06:28.053 [debug] Loading kernelspec from /home/user2/.conda/envs/torch-env/share/jupyter/kernels/python3/kernel.json for /home/user2/.conda/envs/torch-env/bin/python
22:06:28.053 [debug] Loading kernelspec from /home/user2/.conda/envs/twitter/share/jupyter/kernels/python3/kernel.json for /home/user2/.conda/envs/twitter/bin/python
22:06:28.053 [debug] Loading kernelspec from /home/user2/.conda/envs/unsullied/share/jupyter/kernels/python3/kernel.json for /home/user2/.conda/envs/unsullied/bin/python
22:06:28.054 [debug] Loading kernelspec from /home/user2/.conda/envs/vcombine/share/jupyter/kernels/python3/kernel.json for /home/user2/.conda/envs/vcombine/bin/python
22:06:28.054 [debug] Loading kernelspec from /home/user2/.conda/envs/ymirEnv/share/jupyter/kernels/python3/kernel.json for /home/user2/.conda/envs/ymirEnv/bin/python
22:06:28.054 [debug] Loading kernelspec from ~/.conda/envs/R/share/jupyter/kernels/ir/kernel.json for ~/.conda/envs/R/bin/python
22:06:28.054 [debug] Loading kernelspec from ~/.conda/envs/R/share/jupyter/kernels/python3/kernel.json for ~/.conda/envs/R/bin/python
22:06:28.055 [debug] Loading kernelspec from ~/.conda/envs/vcombine/share/jupyter/kernels/python3/kernel.json for ~/.conda/envs/vcombine/bin/python
22:06:28.055 [debug] Loading kernelspec from /home/user2/.conda/envs/fashionformer/share/jupyter/kernels/python3/kernel.json for /home/user2/.conda/envs/fashionformer/bin/python
22:06:28.055 [debug] Loading kernelspec from /home/user2/.conda/envs/iamge2text/share/jupyter/kernels/python3/kernel.json for /home/user2/.conda/envs/iamge2text/bin/python
22:06:28.055 [debug] Loading kernelspec from ~/.conda/envs/jupyterbug/share/jupyter/kernels/python3/kernel.json for ~/.conda/envs/jupyterbug/bin/python
22:06:28.061 [debug] Kernel Specs found in interpreter ~/.conda/envs/mediapipe/bin/python are [{"specFile":"~/.conda/envs/mediapipe/share/jupyter/kernels/python3/kernel.json","interpreterPath":"~/.conda/envs/mediapipe/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd0debfe068e2e34767d027bf336eb271c65e7e5b58e0cd8d0b5b07ab9ef4db2c58","argv":["~/.conda/envs/mediapipe/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"~/.conda/envs/mediapipe/bin/python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"~/.conda/envs/mediapipe/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
22:06:28.062 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd0debfe068e2e34767d027bf336eb271c65e7e5b58e0cd8d0b5b07ab9ef4db2c58', ~/.conda/envs/mediapipe/bin/python for interpreter ~/.conda/envs/mediapipe/bin/python and spec ~/.conda/envs/mediapipe/share/jupyter/kernels/python3/kernel.json
22:06:28.062 [debug] Kernels for interpreter ~/.conda/envs/mediapipe/bin/python are .jvsc74a57bd0debfe068e2e34767d027bf336eb271c65e7e5b58e0cd8d0b5b07ab9ef4db2c58.~/.conda/envs/mediapipe/python.~/.conda/envs/mediapipe/python.-m#ipykernel_launcher
22:06:28.062 [debug] Kernel Specs found in interpreter /home/user2/.conda/envs/aigc/bin/python are [{"specFile":"/home/user2/.conda/envs/aigc/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/user2/.conda/envs/aigc/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd0392d5d99b120b81fd94e69ba8e21eb2a4e6cfafbeff94145d326cef33e06b973","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/home/user2/.conda/envs/aigc/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
22:06:28.062 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd0392d5d99b120b81fd94e69ba8e21eb2a4e6cfafbeff94145d326cef33e06b973', /python for interpreter /home/user2/.conda/envs/aigc/bin/python and spec /home/user2/.conda/envs/aigc/share/jupyter/kernels/python3/kernel.json
22:06:28.062 [debug] Kernels for interpreter /home/user2/.conda/envs/aigc/bin/python are .jvsc74a57bd0392d5d99b120b81fd94e69ba8e21eb2a4e6cfafbeff94145d326cef33e06b973./home/user2/.conda/envs/aigc/python./home/user2/.conda/envs/aigc/python.-m#ipykernel_launcher
22:06:28.062 [debug] Kernel Specs found in interpreter /opt/anaconda3/bin/python are [{"specFile":"/opt/anaconda3/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/opt/anaconda3/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd040d3a090f54c6569ab1632332b64b2c03c39dcf918b08424e98f38b5ae0af88f","argv":["//opt/anaconda3/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"//opt/anaconda3/bin/python","display_name":"Python 3","metadata":{"vscode":{"originalSpecFile":"/opt/anaconda3/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3"}}}]
22:06:28.063 [debug] Hiding default kernel spec 'Python 3', 'pythonjvsc74a57bd040d3a090f54c6569ab1632332b64b2c03c39dcf918b08424e98f38b5ae0af88f', //opt/anaconda3/bin/python for interpreter /opt/anaconda3/bin/python and spec /opt/anaconda3/share/jupyter/kernels/python3/kernel.json
22:06:28.063 [debug] Kernels for interpreter /opt/anaconda3/bin/python are .jvsc74a57bd040d3a090f54c6569ab1632332b64b2c03c39dcf918b08424e98f38b5ae0af88f./opt/anaconda3/python./opt/anaconda3/python.-m#ipykernel_launcher
22:06:28.063 [debug] Kernel Specs found in interpreter /home/user2/.conda/envs/ben_env_copy/bin/python are [{"specFile":"/home/user2/.conda/envs/ben_env_copy/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/user2/.conda/envs/ben_env_copy/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd0be07c7382ff8f2c16ff941bd438fb90caffa1559daf8fbd4a1ff6bc65fd50843","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/home/user2/.conda/envs/ben_env_copy/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
22:06:28.063 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd0be07c7382ff8f2c16ff941bd438fb90caffa1559daf8fbd4a1ff6bc65fd50843', /python for interpreter /home/user2/.conda/envs/ben_env_copy/bin/python and spec /home/user2/.conda/envs/ben_env_copy/share/jupyter/kernels/python3/kernel.json
22:06:28.063 [debug] Kernels for interpreter /home/user2/.conda/envs/ben_env_copy/bin/python are .jvsc74a57bd0be07c7382ff8f2c16ff941bd438fb90caffa1559daf8fbd4a1ff6bc65fd50843./home/user2/.conda/envs/ben_env_copy/python./home/user2/.conda/envs/ben_env_copy/python.-m#ipykernel_launcher
22:06:28.063 [debug] Kernel Specs found in interpreter /home/user2/.conda/envs/cloth/bin/python are [{"specFile":"/home/user2/.conda/envs/cloth/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/user2/.conda/envs/cloth/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd092c332423f3ce999fd2cb2aa8a5a46932e75a09033ba460bf31342e15125155c","argv":["/home/user2/.conda/envs/cloth/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"/home/user2/.conda/envs/cloth/bin/python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/home/user2/.conda/envs/cloth/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
22:06:28.064 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd092c332423f3ce999fd2cb2aa8a5a46932e75a09033ba460bf31342e15125155c', /home/user2/.conda/envs/cloth/bin/python for interpreter /home/user2/.conda/envs/cloth/bin/python and spec /home/user2/.conda/envs/cloth/share/jupyter/kernels/python3/kernel.json
22:06:28.064 [debug] Kernels for interpreter /home/user2/.conda/envs/cloth/bin/python are .jvsc74a57bd092c332423f3ce999fd2cb2aa8a5a46932e75a09033ba460bf31342e15125155c./home/user2/.conda/envs/cloth/python./home/user2/.conda/envs/cloth/python.-m#ipykernel_launcher
22:06:28.064 [debug] Kernel Specs found in interpreter /opt/anaconda3/envs/R_env/bin/python are [{"specFile":"/opt/anaconda3/envs/R_env/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/opt/anaconda3/envs/R_env/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd05b70adc356d833b4bc76e14e810db7f134964a0f09ba8afd6c8097b32786362f","argv":["//opt/anaconda3/envs/R_env/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"//opt/anaconda3/envs/R_env/bin/python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/opt/anaconda3/envs/R_env/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}},{"specFile":"/opt/anaconda3/envs/R_env/share/jupyter/kernels/ir/kernel.json","interpreterPath":"/opt/anaconda3/envs/R_env/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExtForCustomKernelSpec","name":"pythonjvsc74a57bd05b70adc356d833b4bc76e14e810db7f134964a0f09ba8afd6c8097b32786362f","argv":["R","--slave","-e","IRkernel::main()","--args","{connection_file}"],"language":"R","executable":"R","display_name":"R","metadata":{"vscode":{"originalSpecFile":"/opt/anaconda3/envs/R_env/share/jupyter/kernels/ir/kernel.json","originalDisplayName":"R"}}}]
22:06:28.064 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd05b70adc356d833b4bc76e14e810db7f134964a0f09ba8afd6c8097b32786362f', //opt/anaconda3/envs/R_env/bin/python for interpreter /opt/anaconda3/envs/R_env/bin/python and spec /opt/anaconda3/envs/R_env/share/jupyter/kernels/python3/kernel.json
22:06:28.064 [debug] Kernels for interpreter /opt/anaconda3/envs/R_env/bin/python are .jvsc74a57bd05b70adc356d833b4bc76e14e810db7f134964a0f09ba8afd6c8097b32786362f#ir./opt/anaconda3/envs/R_env/python./.r#--slave#-e#irkernel::main()#--args#{connection_file}, .jvsc74a57bd05b70adc356d833b4bc76e14e810db7f134964a0f09ba8afd6c8097b32786362f./opt/anaconda3/envs/R_env/python./opt/anaconda3/envs/R_env/python.-m#ipykernel_launcher
22:06:28.073 [debug] Kernel Specs found in interpreter /home/user2/.conda/envs/graphLearning/bin/python are [{"specFile":"/home/user2/.conda/envs/graphLearning/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/user2/.conda/envs/graphLearning/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd020bee4fbd67c4e3b44c55d300700c523708bf2367023fbe95a71d98d110b452e","argv":["/home/user2/.conda/envs/graphLearning/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"/home/user2/.conda/envs/graphLearning/bin/python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/home/user2/.conda/envs/graphLearning/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
22:06:28.073 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd020bee4fbd67c4e3b44c55d300700c523708bf2367023fbe95a71d98d110b452e', /home/user2/.conda/envs/graphLearning/bin/python for interpreter /home/user2/.conda/envs/graphLearning/bin/python and spec /home/user2/.conda/envs/graphLearning/share/jupyter/kernels/python3/kernel.json
22:06:28.074 [debug] Kernels for interpreter /home/user2/.conda/envs/graphLearning/bin/python are .jvsc74a57bd020bee4fbd67c4e3b44c55d300700c523708bf2367023fbe95a71d98d110b452e./home/user2/.conda/envs/graphLearning/python./home/user2/.conda/envs/graphLearning/python.-m#ipykernel_launcher
22:06:28.074 [debug] Kernel Specs found in interpreter /home/user2/.conda/envs/llama2/bin/python are [{"specFile":"/home/user2/.conda/envs/llama2/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/user2/.conda/envs/llama2/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd0a0a825c6446a641f66122dcff4d96ef74a581d8ef119e9711ba40b41e14e39b2","argv":["/home/user2/.conda/envs/llama2/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"/home/user2/.conda/envs/llama2/bin/python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/home/user2/.conda/envs/llama2/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
22:06:28.074 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd0a0a825c6446a641f66122dcff4d96ef74a581d8ef119e9711ba40b41e14e39b2', /home/user2/.conda/envs/llama2/bin/python for interpreter /home/user2/.conda/envs/llama2/bin/python and spec /home/user2/.conda/envs/llama2/share/jupyter/kernels/python3/kernel.json
22:06:28.074 [debug] Kernels for interpreter /home/user2/.conda/envs/llama2/bin/python are .jvsc74a57bd0a0a825c6446a641f66122dcff4d96ef74a581d8ef119e9711ba40b41e14e39b2./home/user2/.conda/envs/llama2/python./home/user2/.conda/envs/llama2/python.-m#ipykernel_launcher
22:06:28.074 [debug] Kernel Specs found in interpreter /home/user2/.conda/envs/graphLearning2/bin/python are [{"specFile":"/home/user2/.conda/envs/graphLearning2/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/user2/.conda/envs/graphLearning2/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd04288e0e63c8f833da5ed63252081b652ccd99840167ec56fb3999083404729ed","argv":["/home/user2/.conda/envs/graphLearning2/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"/home/user2/.conda/envs/graphLearning2/bin/python","display_name":"Python 3","metadata":{"vscode":{"originalSpecFile":"/home/user2/.conda/envs/graphLearning2/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3"}}}]
22:06:28.075 [debug] Hiding default kernel spec 'Python 3', 'pythonjvsc74a57bd04288e0e63c8f833da5ed63252081b652ccd99840167ec56fb3999083404729ed', /home/user2/.conda/envs/graphLearning2/bin/python for interpreter /home/user2/.conda/envs/graphLearning2/bin/python and spec /home/user2/.conda/envs/graphLearning2/share/jupyter/kernels/python3/kernel.json
22:06:28.075 [debug] Kernels for interpreter /home/user2/.conda/envs/graphLearning2/bin/python are .jvsc74a57bd04288e0e63c8f833da5ed63252081b652ccd99840167ec56fb3999083404729ed./home/user2/.conda/envs/graphLearning2/python./home/user2/.conda/envs/graphLearning2/python.-m#ipykernel_launcher
22:06:28.075 [debug] Kernel Specs found in interpreter /home/user2/.conda/envs/nli_hs/bin/python are [{"specFile":"/home/user2/.conda/envs/nli_hs/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/user2/.conda/envs/nli_hs/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd03fd2b08ec46873b26f29d65041421ed5f68be9426608fee61962cf029fa7641d","argv":["/home/user2/.conda/envs/nli_hs/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"/home/user2/.conda/envs/nli_hs/bin/python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/home/user2/.conda/envs/nli_hs/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
22:06:28.075 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd03fd2b08ec46873b26f29d65041421ed5f68be9426608fee61962cf029fa7641d', /home/user2/.conda/envs/nli_hs/bin/python for interpreter /home/user2/.conda/envs/nli_hs/bin/python and spec /home/user2/.conda/envs/nli_hs/share/jupyter/kernels/python3/kernel.json
22:06:28.075 [debug] Kernels for interpreter /home/user2/.conda/envs/nli_hs/bin/python are .jvsc74a57bd03fd2b08ec46873b26f29d65041421ed5f68be9426608fee61962cf029fa7641d./home/user2/.conda/envs/nli_hs/python./home/user2/.conda/envs/nli_hs/python.-m#ipykernel_launcher
22:06:28.075 [debug] Kernel Specs found in interpreter /home/user2/.conda/envs/reddittrain/bin/python are [{"specFile":"/home/user2/.conda/envs/reddittrain/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/user2/.conda/envs/reddittrain/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd08e2b116155370297c99935d8d67e46780dace694eb1595f70a1de4c8877d09ae","argv":["/home/user2/.conda/envs/reddittrain/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"/home/user2/.conda/envs/reddittrain/bin/python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/home/user2/.conda/envs/reddittrain/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
22:06:28.075 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd08e2b116155370297c99935d8d67e46780dace694eb1595f70a1de4c8877d09ae', /home/user2/.conda/envs/reddittrain/bin/python for interpreter /home/user2/.conda/envs/reddittrain/bin/python and spec /home/user2/.conda/envs/reddittrain/share/jupyter/kernels/python3/kernel.json
22:06:28.075 [debug] Kernels for interpreter /home/user2/.conda/envs/reddittrain/bin/python are .jvsc74a57bd08e2b116155370297c99935d8d67e46780dace694eb1595f70a1de4c8877d09ae./home/user2/.conda/envs/reddittrain/python./home/user2/.conda/envs/reddittrain/python.-m#ipykernel_launcher
22:06:28.076 [debug] Kernel Specs found in interpreter /home/user2/.conda/envs/old_mm/bin/python are [{"specFile":"/home/user2/.conda/envs/old_mm/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/user2/.conda/envs/old_mm/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd091fab0d54228a9f9bfe479c311ea0b630b7ab91b486b973f992fe216a93a24f0","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/home/user2/.conda/envs/old_mm/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
22:06:28.076 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd091fab0d54228a9f9bfe479c311ea0b630b7ab91b486b973f992fe216a93a24f0', /python for interpreter /home/user2/.conda/envs/old_mm/bin/python and spec /home/user2/.conda/envs/old_mm/share/jupyter/kernels/python3/kernel.json
22:06:28.076 [debug] Kernels for interpreter /home/user2/.conda/envs/old_mm/bin/python are .jvsc74a57bd091fab0d54228a9f9bfe479c311ea0b630b7ab91b486b973f992fe216a93a24f0./home/user2/.conda/envs/old_mm/python./home/user2/.conda/envs/old_mm/python.-m#ipykernel_launcher
22:06:28.076 [debug] Kernel Specs found in interpreter /home/user2/.conda/envs/torch-env/bin/python are [{"specFile":"/home/user2/.conda/envs/torch-env/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/user2/.conda/envs/torch-env/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd0cd0c6153fafe02c2acd6dfa857deab3574fe5c3f36670727f1cf8ff2d7aac1a8","argv":["/home/user2/.conda/envs/torch-env/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"/home/user2/.conda/envs/torch-env/bin/python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/home/user2/.conda/envs/torch-env/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
22:06:28.076 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd0cd0c6153fafe02c2acd6dfa857deab3574fe5c3f36670727f1cf8ff2d7aac1a8', /home/user2/.conda/envs/torch-env/bin/python for interpreter /home/user2/.conda/envs/torch-env/bin/python and spec /home/user2/.conda/envs/torch-env/share/jupyter/kernels/python3/kernel.json
22:06:28.076 [debug] Kernels for interpreter /home/user2/.conda/envs/torch-env/bin/python are .jvsc74a57bd0cd0c6153fafe02c2acd6dfa857deab3574fe5c3f36670727f1cf8ff2d7aac1a8./home/user2/.conda/envs/torch-env/python./home/user2/.conda/envs/torch-env/python.-m#ipykernel_launcher
22:06:28.076 [debug] Kernel Specs found in interpreter /home/user2/.conda/envs/twitter/bin/python are [{"specFile":"/home/user2/.conda/envs/twitter/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/user2/.conda/envs/twitter/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd075960a6d76952bcba58ef34fdaf28e20dbc82709cdb3323c2d83def6e25070db","argv":["/home/user2/.conda/envs/twitter/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"/home/user2/.conda/envs/twitter/bin/python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/home/user2/.conda/envs/twitter/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
22:06:28.076 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd075960a6d76952bcba58ef34fdaf28e20dbc82709cdb3323c2d83def6e25070db', /home/user2/.conda/envs/twitter/bin/python for interpreter /home/user2/.conda/envs/twitter/bin/python and spec /home/user2/.conda/envs/twitter/share/jupyter/kernels/python3/kernel.json
22:06:28.076 [debug] Kernels for interpreter /home/user2/.conda/envs/twitter/bin/python are .jvsc74a57bd075960a6d76952bcba58ef34fdaf28e20dbc82709cdb3323c2d83def6e25070db./home/user2/.conda/envs/twitter/python./home/user2/.conda/envs/twitter/python.-m#ipykernel_launcher
22:06:28.077 [debug] Kernel Specs found in interpreter /home/user2/.conda/envs/unsullied/bin/python are [{"specFile":"/home/user2/.conda/envs/unsullied/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/user2/.conda/envs/unsullied/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd08e4d1b7d4da4383afa26a2c457c609e32119112b7b7e3fbfee32098c203a7c00","argv":["/home/user2/.conda/envs/unsullied/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"/home/user2/.conda/envs/unsullied/bin/python","display_name":"Python 3","metadata":{"vscode":{"originalSpecFile":"/home/user2/.conda/envs/unsullied/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3"}}}]
22:06:28.077 [debug] Hiding default kernel spec 'Python 3', 'pythonjvsc74a57bd08e4d1b7d4da4383afa26a2c457c609e32119112b7b7e3fbfee32098c203a7c00', /home/user2/.conda/envs/unsullied/bin/python for interpreter /home/user2/.conda/envs/unsullied/bin/python and spec /home/user2/.conda/envs/unsullied/share/jupyter/kernels/python3/kernel.json
22:06:28.077 [debug] Kernels for interpreter /home/user2/.conda/envs/unsullied/bin/python are .jvsc74a57bd08e4d1b7d4da4383afa26a2c457c609e32119112b7b7e3fbfee32098c203a7c00./home/user2/.conda/envs/unsullied/python./home/user2/.conda/envs/unsullied/python.-m#ipykernel_launcher
22:06:28.077 [debug] Kernel Specs found in interpreter /home/user2/.conda/envs/vcombine/bin/python are [{"specFile":"/home/user2/.conda/envs/vcombine/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/user2/.conda/envs/vcombine/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd06e7e79d4e4dbc4abfbc7f75fc9f6f0115f5c3b1d37375abb1eef507f0688ace2","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/home/user2/.conda/envs/vcombine/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
22:06:28.077 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd06e7e79d4e4dbc4abfbc7f75fc9f6f0115f5c3b1d37375abb1eef507f0688ace2', /python for interpreter /home/user2/.conda/envs/vcombine/bin/python and spec /home/user2/.conda/envs/vcombine/share/jupyter/kernels/python3/kernel.json
22:06:28.077 [debug] Kernels for interpreter /home/user2/.conda/envs/vcombine/bin/python are .jvsc74a57bd06e7e79d4e4dbc4abfbc7f75fc9f6f0115f5c3b1d37375abb1eef507f0688ace2./home/user2/.conda/envs/vcombine/python./home/user2/.conda/envs/vcombine/python.-m#ipykernel_launcher
22:06:28.077 [debug] Kernel Specs found in interpreter /home/user2/.conda/envs/ymirEnv/bin/python are [{"specFile":"/home/user2/.conda/envs/ymirEnv/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/user2/.conda/envs/ymirEnv/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd0dbf9833aa14b9bf920ff1e0a33024b8cf70b8391aff4d822c865a8a11f16150a","argv":["/home/user2/.conda/envs/ymirEnv/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"/home/user2/.conda/envs/ymirEnv/bin/python","display_name":"Python 3","metadata":{"vscode":{"originalSpecFile":"/home/user2/.conda/envs/ymirEnv/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3"}}}]
22:06:28.078 [debug] Hiding default kernel spec 'Python 3', 'pythonjvsc74a57bd0dbf9833aa14b9bf920ff1e0a33024b8cf70b8391aff4d822c865a8a11f16150a', /home/user2/.conda/envs/ymirEnv/bin/python for interpreter /home/user2/.conda/envs/ymirEnv/bin/python and spec /home/user2/.conda/envs/ymirEnv/share/jupyter/kernels/python3/kernel.json
22:06:28.078 [debug] Kernels for interpreter /home/user2/.conda/envs/ymirEnv/bin/python are .jvsc74a57bd0dbf9833aa14b9bf920ff1e0a33024b8cf70b8391aff4d822c865a8a11f16150a./home/user2/.conda/envs/ymirEnv/python./home/user2/.conda/envs/ymirEnv/python.-m#ipykernel_launcher
22:06:28.078 [debug] Kernel Specs found in interpreter ~/.conda/envs/R/bin/python are [{"specFile":"~/.conda/envs/R/share/jupyter/kernels/ir/kernel.json","interpreterPath":"~/.conda/envs/R/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExtForCustomKernelSpec","name":"pythonjvsc74a57bd01525bef7503a5b0f103b833c405f08239a6845da5e9da0c9cf1915c907a6bfaf","argv":["R","--slave","-e","IRkernel::main()","--args","{connection_file}"],"language":"R","executable":"R","display_name":"R","metadata":{"vscode":{"originalSpecFile":"~/.conda/envs/R/share/jupyter/kernels/ir/kernel.json","originalDisplayName":"R"}}},{"specFile":"~/.conda/envs/R/share/jupyter/kernels/python3/kernel.json","interpreterPath":"~/.conda/envs/R/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd01525bef7503a5b0f103b833c405f08239a6845da5e9da0c9cf1915c907a6bfaf","argv":["~/.conda/envs/R/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"~/.conda/envs/R/bin/python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"~/.conda/envs/R/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
22:06:28.078 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd01525bef7503a5b0f103b833c405f08239a6845da5e9da0c9cf1915c907a6bfaf', ~/.conda/envs/R/bin/python for interpreter ~/.conda/envs/R/bin/python and spec ~/.conda/envs/R/share/jupyter/kernels/python3/kernel.json
22:06:28.078 [debug] Kernels for interpreter ~/.conda/envs/R/bin/python are .jvsc74a57bd01525bef7503a5b0f103b833c405f08239a6845da5e9da0c9cf1915c907a6bfaf#ir.~/.conda/envs/R/python./.r#--slave#-e#irkernel::main()#--args#{connection_file}, .jvsc74a57bd01525bef7503a5b0f103b833c405f08239a6845da5e9da0c9cf1915c907a6bfaf.~/.conda/envs/R/python.~/.conda/envs/R/python.-m#ipykernel_launcher
22:06:28.083 [debug] Kernel Specs found in interpreter ~/.conda/envs/vcombine/bin/python are [{"specFile":"~/.conda/envs/vcombine/share/jupyter/kernels/python3/kernel.json","interpreterPath":"~/.conda/envs/vcombine/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd02df0998c03778260bfc6657b9aa76b64827de0a6d8ffc7c0c56d408335fe6e97","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"~/.conda/envs/vcombine/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
22:06:28.083 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd02df0998c03778260bfc6657b9aa76b64827de0a6d8ffc7c0c56d408335fe6e97', /python for interpreter ~/.conda/envs/vcombine/bin/python and spec ~/.conda/envs/vcombine/share/jupyter/kernels/python3/kernel.json
22:06:28.084 [debug] Kernels for interpreter ~/.conda/envs/vcombine/bin/python are .jvsc74a57bd02df0998c03778260bfc6657b9aa76b64827de0a6d8ffc7c0c56d408335fe6e97.~/.conda/envs/vcombine/python.~/.conda/envs/vcombine/python.-m#ipykernel_launcher
22:06:28.084 [debug] Kernel Specs found in interpreter /home/user2/.conda/envs/fashionformer/bin/python are [{"specFile":"/home/user2/.conda/envs/fashionformer/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/user2/.conda/envs/fashionformer/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd01c49f2bf16fd1aa2d91850f738be975a8057a537f368af546e2a20e01e222f00","argv":["/home/user2/.conda/envs/fashionformer/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"/home/user2/.conda/envs/fashionformer/bin/python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/home/user2/.conda/envs/fashionformer/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
22:06:28.084 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd01c49f2bf16fd1aa2d91850f738be975a8057a537f368af546e2a20e01e222f00', /home/user2/.conda/envs/fashionformer/bin/python for interpreter /home/user2/.conda/envs/fashionformer/bin/python and spec /home/user2/.conda/envs/fashionformer/share/jupyter/kernels/python3/kernel.json
22:06:28.084 [debug] Kernels for interpreter /home/user2/.conda/envs/fashionformer/bin/python are .jvsc74a57bd01c49f2bf16fd1aa2d91850f738be975a8057a537f368af546e2a20e01e222f00./home/user2/.conda/envs/fashionformer/python./home/user2/.conda/envs/fashionformer/python.-m#ipykernel_launcher
22:06:28.084 [debug] Kernel Specs found in interpreter /home/user2/.conda/envs/iamge2text/bin/python are [{"specFile":"/home/user2/.conda/envs/iamge2text/share/jupyter/kernels/python3/kernel.json","interpreterPath":"/home/user2/.conda/envs/iamge2text/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd0be2d5ee0a6a59ef90f6d279660e769d6296bc15035d84b37a35be905dd18fc11","argv":["/home/user2/.conda/envs/iamge2text/bin/python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"/home/user2/.conda/envs/iamge2text/bin/python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"/home/user2/.conda/envs/iamge2text/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
22:06:28.084 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd0be2d5ee0a6a59ef90f6d279660e769d6296bc15035d84b37a35be905dd18fc11', /home/user2/.conda/envs/iamge2text/bin/python for interpreter /home/user2/.conda/envs/iamge2text/bin/python and spec /home/user2/.conda/envs/iamge2text/share/jupyter/kernels/python3/kernel.json
22:06:28.084 [debug] Kernels for interpreter /home/user2/.conda/envs/iamge2text/bin/python are .jvsc74a57bd0be2d5ee0a6a59ef90f6d279660e769d6296bc15035d84b37a35be905dd18fc11./home/user2/.conda/envs/iamge2text/python./home/user2/.conda/envs/iamge2text/python.-m#ipykernel_launcher
22:06:28.085 [debug] Kernel Specs found in interpreter ~/.conda/envs/jupyterbug/bin/python are [{"specFile":"~/.conda/envs/jupyterbug/share/jupyter/kernels/python3/kernel.json","interpreterPath":"~/.conda/envs/jupyterbug/bin/python","isRegisteredByVSC":"registeredByNewVersionOfExt","name":"pythonjvsc74a57bd01bfb06483d36cbf0890cd4c17b0e31b394451bff0a12d1a716ca145f71a0f86b","argv":["python","-m","ipykernel_launcher","-f","{connection_file}"],"language":"python","executable":"python","display_name":"Python 3 (ipykernel)","metadata":{"debugger":true,"vscode":{"originalSpecFile":"~/.conda/envs/jupyterbug/share/jupyter/kernels/python3/kernel.json","originalDisplayName":"Python 3 (ipykernel)"}}}]
22:06:28.085 [debug] Hiding default kernel spec 'Python 3 (ipykernel)', 'pythonjvsc74a57bd01bfb06483d36cbf0890cd4c17b0e31b394451bff0a12d1a716ca145f71a0f86b', /python for interpreter ~/.conda/envs/jupyterbug/bin/python and spec ~/.conda/envs/jupyterbug/share/jupyter/kernels/python3/kernel.json
22:06:28.085 [debug] Kernels for interpreter ~/.conda/envs/jupyterbug/bin/python are .jvsc74a57bd01bfb06483d36cbf0890cd4c17b0e31b394451bff0a12d1a716ca145f71a0f86b.~/.conda/envs/jupyterbug/python.~/.conda/envs/jupyterbug/python.-m#ipykernel_launcher
22:06:28.509 [debug] KernelProvider switched kernel to id = .jvsc74a57bd01bfb06483d36cbf0890cd4c17b0e31b394451bff0a12d1a716ca145f71a0f86b.~/.conda/envs/jupyterbug/python.~/.conda/envs/jupyterbug/python.-m#ipykernel_launcher
22:06:28.510 [debug] start the kernel, options.disableUI=true for ~/maiqi/video_combine/jupyterbug.ipynb
22:06:28.513 [debug] Initialize notebook communications for editor ~/maiqi/video_combine/jupyterbug.ipynb
22:06:28.513 [debug] Resolving notebook UI Comms (resolve) for ~/maiqi/video_combine/jupyterbug.ipynb
22:06:28.513 [debug] initialize CommonMessageCoordinator
22:06:28.515 [debug] Registering commtarget jupyter.widget
22:06:28.515 [debug] IPyWidgetMessageDispatcher.initialize
22:06:28.516 [debug] Attempting to determine version of IPyWidgets
22:06:28.516 [debug] Controller selection change completed
22:06:28.517 [debug] Waiting for IPyWidgets version
22:06:28.517 [debug] Waiting for IPyWidgets version promise
22:06:28.520 [debug] Getting activated env variables, Class name = Ip (started execution), Arg 1: "~/maiqi/video_combine", Arg 2: "~/.conda/envs/jupyterbug/bin/python", Arg 3: undefined
22:06:28.520 [debug] Get Custom Env Variables, Class name = _m (started execution), Arg 1: "~/maiqi/video_combine", Arg 2: "RunPythonCode"
22:06:28.521 [debug] Get Custom Env Variables, Class name = _m, completed in 1ms, has a truthy return value, Arg 1: "~/maiqi/video_combine", Arg 2: "RunPythonCode"
22:06:28.521 [info] Starting Kernel startUsingPythonInterpreter, .jvsc74a57bd01bfb06483d36cbf0890cd4c17b0e31b394451bff0a12d1a716ca145f71a0f86b.~/.conda/envs/jupyterbug/python.~/.conda/envs/jupyterbug/python.-m#ipykernel_launcher  (Python Path: ~/.conda/envs/jupyterbug/bin/python, Conda, jupyterbug, 3.10.13) for '~/maiqi/video_combine/jupyterbug.ipynb' (disableUI=true)
22:06:28.522 [debug] Creating raw notebook for resource '~/maiqi/video_combine/jupyterbug.ipynb'
22:06:28.534 [debug] Getting activated env variables, Class name = Ip (started execution), Arg 1: "~/maiqi/video_combine/jupyterbug.ipynb", Arg 2: "~/.conda/envs/jupyterbug/bin/python", Arg 3: undefined
22:06:28.534 [debug] Get Custom Env Variables, Class name = _m (started execution), Arg 1: "~/maiqi/video_combine/jupyterbug.ipynb", Arg 2: "RunPythonCode"
22:06:28.534 [debug] Get Custom Env Variables, Class name = _m, completed in 0ms, has a truthy return value, Arg 1: "~/maiqi/video_combine/jupyterbug.ipynb", Arg 2: "RunPythonCode"
22:06:28.554 [debug] Launching kernel .jvsc74a57bd01bfb06483d36cbf0890cd4c17b0e31b394451bff0a12d1a716ca145f71a0f86b.~/.conda/envs/jupyterbug/python.~/.conda/envs/jupyterbug/python.-m#ipykernel_launcher for ~/maiqi/video_combine/jupyterbug.ipynb in ~/maiqi/video_combine with ports 9006, 9005, 9009, 9007, 9008
22:06:30.078 [debug] Conda file returned by Python Extension is conda
22:06:30.551 [error] Failed to get activated conda env vars for ~/.conda/envs/mediapipe/bin/python
                 in 2784ms
22:06:30.554 [error] Unable to determine site packages path for python ~/.conda/envs/mediapipe/bin/python (Conda)
22:06:30.554 [debug] Prepend PATH with python bin for ~/.conda/envs/mediapipe/bin/python
22:06:30.554 [debug] Activated Env Variables for ~/.conda/envs/mediapipe/bin/python, 
    PATH value is ~/.conda/envs/mediapipe/bin:~/.vscode-server/bin/0ee08df0cf4527e40edc9aa28f4b5bd38bbff2b2/bin/remote-cli:~/.local/bin://opt/anaconda3/bin://opt/anaconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:~/.vscode-server/bin/0ee08df0cf4527e40edc9aa28f4b5bd38bbff2b2/bin/remote-cli:~/.local/bin://opt/anaconda3/bin://opt/anaconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin and 
    Path value is undefined
22:06:30.555 [debug] Getting activated env variables, Class name = Ip, completed in 2788ms, has a truthy return value, Arg 1: "~/maiqi/video_combine", Arg 2: "~/.conda/envs/mediapipe/bin/python", Arg 3: undefined
22:06:30.606 [info] Process Execution: ~/.conda/envs/mediapipe/bin/python -m pip list
22:06:30.615 [error] Failed to get activated conda env vars for ~/.conda/envs/jupyterbug/bin/python
                 in 2095ms
22:06:30.616 [error] Unable to determine site packages path for python ~/.conda/envs/jupyterbug/bin/python (Conda)
22:06:30.616 [debug] Prepend PATH with python bin for ~/.conda/envs/jupyterbug/bin/python
22:06:30.616 [debug] Activated Env Variables for ~/.conda/envs/jupyterbug/bin/python, 
    PATH value is ~/.conda/envs/jupyterbug/bin:~/.vscode-server/bin/0ee08df0cf4527e40edc9aa28f4b5bd38bbff2b2/bin/remote-cli:~/.local/bin://opt/anaconda3/bin://opt/anaconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:~/.vscode-server/bin/0ee08df0cf4527e40edc9aa28f4b5bd38bbff2b2/bin/remote-cli:~/.local/bin://opt/anaconda3/bin://opt/anaconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin and 
    Path value is undefined
22:06:30.617 [debug] Getting activated env variables, Class name = Ip, completed in 2097ms, has a truthy return value, Arg 1: "~/maiqi/video_combine", Arg 2: "~/.conda/envs/jupyterbug/bin/python", Arg 3: undefined
22:06:30.658 [info] Process Execution: ~/.conda/envs/jupyterbug/bin/python -m pip list
22:06:30.671 [error] Failed to get activated conda env vars for ~/.conda/envs/jupyterbug/bin/python
                 in 2137ms
22:06:30.673 [error] Unable to determine site packages path for python ~/.conda/envs/jupyterbug/bin/python (Conda)
22:06:30.673 [debug] Prepend PATH with python bin for ~/.conda/envs/jupyterbug/bin/python
22:06:30.673 [debug] Activated Env Variables for ~/.conda/envs/jupyterbug/bin/python, 
    PATH value is ~/.conda/envs/jupyterbug/bin:~/.vscode-server/bin/0ee08df0cf4527e40edc9aa28f4b5bd38bbff2b2/bin/remote-cli:~/.local/bin://opt/anaconda3/bin://opt/anaconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:~/.vscode-server/bin/0ee08df0cf4527e40edc9aa28f4b5bd38bbff2b2/bin/remote-cli:~/.local/bin://opt/anaconda3/bin://opt/anaconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin and 
    Path value is undefined
22:06:30.673 [debug] Getting activated env variables, Class name = Ip, completed in 2139ms, has a truthy return value, Arg 1: "~/maiqi/video_combine/jupyterbug.ipynb", Arg 2: "~/.conda/envs/jupyterbug/bin/python", Arg 3: undefined
22:06:30.714 [info] Process Execution: ~/.conda/envs/jupyterbug/bin/python -c "import ipykernel; print(ipykernel.__version__); print("5dc3a68c-e34e-4080-9c3e-2a532b2ccb4d"); print(ipykernel.__file__)"
22:06:30.715 [debug] Kernel Env Variables for ~/.vscode-server/extensions/ms-toolsai.jupyter-2023.11.1003402403-linux-x64/temp/jupyter/kernels/pythonjvsc74a57bd01bfb06483d36cbf0890cd4c17b0e31b394451bff0a12d1a716ca145f71a0f86b/kernel.json, PATH value is ~/.conda/envs/jupyterbug/bin:~/.vscode-server/bin/0ee08df0cf4527e40edc9aa28f4b5bd38bbff2b2/bin/remote-cli:~/.local/bin://opt/anaconda3/bin://opt/anaconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:~/.vscode-server/bin/0ee08df0cf4527e40edc9aa28f4b5bd38bbff2b2/bin/remote-cli:~/.local/bin://opt/anaconda3/bin://opt/anaconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
22:06:30.767 [info] Process Execution: ~/.conda/envs/jupyterbug/bin/python -m ipykernel_launcher --f=~/.local/share/jupyter/runtime/kernel-v2-2870808Bwe70uydTN6L.json
    > cwd: ~/maiqi/video_combine
22:06:30.940 [info] End refreshing Kernel Picker (1703167586712)
22:06:30.947 [debug] ipykernel version & path 6.27.1, ~/.conda/envs/jupyterbug/lib/python3.10/site-packages/ipykernel/__init__.py for ~/.conda/envs/jupyterbug/bin/python
22:06:31.354 [debug] Kernel output: NOTE: When using the `ipython kernel` entry point, Ctrl-C will not work.

To exit, you will have to explicitly quit this process, by either sending
"quit" from a client, or using Ctrl-\ in UNIX-like environments.

To read more about this, see https://github.com/ipython/ipython/issues/2049


To connect another client to this kernel, use:
    --existing kernel-v2-2870808Bwe70uydTN6L.json

22:06:31.434 [debug] Waiting for Raw Session to be ready in postStartRawSession
22:06:31.434 [debug] Waiting for Raw session to be ready, status: connected
22:06:31.434 [debug] Raw session connected
22:06:31.434 [debug] Waiting for Raw session to be ready
22:06:31.434 [debug] Waited for Raw session to be ready & got status: connected
22:06:31.434 [debug] Successfully waited for Raw Session to be ready in postStartRawSession
22:06:31.434 [debug] Kernel status is 'unknown' before requesting kernel info and after ready
22:06:31.435 [debug] Sending request for kernelInfo
22:06:31.446 [debug] Got response for requestKernelInfo
22:06:31.446 [debug] Successfully completed postStartRawSession
22:06:31.449 [debug] Executing silently Code (idle) = import sys as _VSCODE_sys\nprint(_VSCODE_sys.executable); del _VSCODE_sys
22:06:31.464 [debug] Executing silently Code (completed) = import sys as _VSCODE_sys\nprint(_VSCODE_sys.executable); del _VSCODE_sys with 1 output(s)
22:06:31.465 [debug] End sendTelemetryForPythonKernelExecutable after 16ms
22:06:31.465 [debug] Started running kernel initialization for ~/maiqi/video_combine/jupyterbug.ipynb
22:06:31.465 [debug] Executing silently Code (idle) = try:\nimport ipywidgets as _VSCODE_ipywidgets\nprint("e976ee50-99ed-4aba-9b6b-9dcd5634d07d:IPy
22:06:31.474 [debug] Executing silently Code (completed) = try:\nimport ipywidgets as _VSCODE_ipywidgets\nprint("e976ee50-99ed-4aba-9b6b-9dcd5634d07d:IPy with 0 output(s)
22:06:31.474 [debug] Determined IPyWidgets Version as undefined
22:06:31.477 [debug] Executing silently Code (idle) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\n%cd "/~/maiqi/video_combine"\nif _VSCODE_
22:06:31.494 [debug] Executing silently Code (completed) = import os as _VSCODE_os\nimport sys as _VSCODE_sys\n%cd "/~/maiqi/video_combine"\nif _VSCODE_ with 2 output(s)
22:06:31.494 [debug] Requesting Kernel info
22:06:31.495 [debug] Got Kernel info
22:06:31.495 [debug] End running kernel initialization, now waiting for idle
22:06:31.495 [debug] Waiting for idle on (kernel): dab4d1ff-e846-4771-81b6-cc68fc532e2c -> idle
22:06:31.496 [debug] Finished waiting for idle on (kernel): dab4d1ff-e846-4771-81b6-cc68fc532e2c -> idle
22:06:31.496 [debug] End running kernel initialization, session is idle
22:06:31.499 [debug] IPyWidgetScriptSource.initialize
22:06:31.499 [debug] IPyWidgetMessageDispatcher.initialize
22:06:31.502 [debug] getDataDirsImpl, Class name = rn (started execution), Arg 1: "~/maiqi/video_combine/jupyterbug.ipynb", Arg 2: "~/.conda/envs/jupyterbug/bin/python"
22:06:31.502 [debug] Get Custom Env Variables, Class name = _m (started execution), Arg 1: undefined, Arg 2: "RunPythonCode"
22:06:31.504 [debug] Get Custom Env Variables, Class name = _m, completed in 2ms, has a truthy return value, Arg 1: undefined, Arg 2: "RunPythonCode"
22:06:31.504 [debug] Jupyter Paths : 
22:06:31.556 [info] Process Execution: ~/.conda/envs/jupyterbug/bin/python ~/.vscode-server/extensions/ms-toolsai.jupyter-2023.11.1003402403-linux-x64/pythonFiles/printJupyterDataDir.py
22:06:31.573 [debug] getDataDirsImpl, Class name = rn, completed in 71ms, has a truthy return value, Arg 1: "~/maiqi/video_combine/jupyterbug.ipynb", Arg 2: "~/.conda/envs/jupyterbug/bin/python"
22:07:03.394 [info] Handle Execution of Cells 0 for ~/maiqi/video_combine/jupyterbug.ipynb
22:07:03.399 [debug] Cell Index:0 sent to kernel
22:07:03.408 [debug] Start cell 0 execution @ 1703167623408 (clear output)
22:07:03.408 [info] Kernel acknowledged execution of cell 0 @ 1703167623408
22:07:03.998 [info] End cell 0 execution after 0.59s, completed @ 1703167623998, started @ 1703167623408
22:07:03.999 [debug] Cell 0 executed with state Success

@themaigod
Copy link
Author

@DonJayamanne

@DonJayamanne
Copy link
Contributor

(In remote,) Create a conda environment called "jupyterbug" in python 3.10 and install jupyter notebook (pip install notebook)

How are you connecting to this remote Jupyter server?
Are you using VS Code remote connections like SSH or the like
Or are you merely connecting to the remote Jupyter server via the Jupyter extension by adding the Url of the server?

@themaigod
Copy link
Author

(In remote,) Create a conda environment called "jupyterbug" in python 3.10 and install jupyter notebook (pip install notebook)

How are you connecting to this remote Jupyter server?
Are you using VS Code remote connections like SSH or the like
Or are you merely connecting to the remote Jupyter server via the Jupyter extension by adding the Url of the server?

@DonJayamanne , I am using ssh connection by remote extension in vs code.

@themaigod
Copy link
Author

Maybe you need the extension version.
Remote - SSH: v0.107.1

@DonJayamanne
Copy link
Contributor

DonJayamanne commented Jan 28, 2024

Closing as a duplicate of #10707 (upstream issue microsoft/vscode-remote-release#1671)

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Mar 15, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Issue identified by VS Code Team member as probable bug info-needed Issue requires more information from poster notebook-execution Kernels issues (start/restart/switch/execution, install ipykernel)
Projects
None yet
Development

No branches or pull requests

3 participants