Closed jkelley7 closed 3 years ago
This part seems weird:
c:\Users\e104249.vscode\extensions
That should be this (looks like a missing backslash)
c:\Users\e104249\.vscode\extensions
Does this path actually exist?
c:\Users\e104249.vscode\extensions
There's also this that happens when we try to list kernelspecs
ImportError: DLL load failed: The specified module could not be found.
That can occur if: 1) The conda environment we're using isn't activated correctly 1) The conda environment we're using is messed up 1) The conda environment we're using isn't recognized as a conda environment.
It looks like the problem is 2), the environment is messed up somehow.
this path (c:\Users\e104249.vscode\extensions) does NOT exist it looks to be a copy and paste error by me, somehow
should i try deleting and re-creating the environment?
Yes that would be good. After you create a new environment, while inside of VS code, run this command to force us to use it (instead of us trying to find one that works):
Just tried it and the behavior is exactly the same.
How did you install the environment?
What happens if you go to the VS code terminal, conda activate your environment and run 'jupyter kernelspec list'
the environment was install thru conda
conda create -n corona_sale_exp python=3.7.4 anaconda
after running the command jupyter kernelspec list
the following was returned
Available kernels: python36564bit56efaf23392444fb87c4d36b31649bcd C:\Users\e104249\AppData\Roaming\jupyter\kernels\python36564bit56efaf23392444fb87c4d36b31649bcd python36564bitanaconda3conda4472d3631d004d48a132a9d8f400cac6 C:\Users\e104249\AppData\Roaming\jupyter\kernels\python36564bitanaconda3conda4472d3631d004d48a132a9d8f400cac6 python36564bitcontinuumvirtualenvbfe070ba81144a948080e3adef1d38c7 C:\Users\e104249\AppData\Roaming\jupyter\kernels\python36564bitcontinuumvirtualenvbfe070ba81144a948080e3adef1d38c7 python36564bitmarketclassconda3acce038e6904ed98d79f0f1232cbad3 C:\Users\e104249\AppData\Roaming\jupyter\kernels\python36564bitmarketclassconda3acce038e6904ed98d79f0f1232cbad3 python36564bitmktgunifiedforecastconda8b939f9cf3774063860cf307d5cc20fe C:\Users\e104249\AppData\Roaming\jupyter\kernels\python36564bitmktgunifiedforecastconda8b939f9cf3774063860cf307d5cc20fe python3 C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\share\jupyter\kernels\python3
Hmm. Then we must not be able to activate conda correctly.
If you create a simple python file with say just a print statement in it, then pick 'Python: Run File in Terminal', does it activate conda when running the file?
it does appear to activate env and print hello world
PS C:\Users\e104249\projects\corona_sale_exp> & C:/Users/e104249/AppData/Local/Continuum/anaconda3/envs/corona_sale_exp/python.exe c:/Users/e104249/projects/corona_sale_exp/test_print.py hello world
Is that the entire output?
This is what I get:
Loading personal and system profiles took 1242ms.
(base) PS D:\training\SnakePython> conda activate rawTest
(rawTest) PS D:\training\SnakePython> & C:/Users/rchiodo.REDMOND/AppData/Local/Continuum/miniconda3/envs/rawTest/python.exe d:/training/SnakePython/sub/simple.py
test
(rawTest) PS D:\training\SnakePython>
Notice the extra conda activate
yes that was the entire output. so it's not activating the environment?
I tried it another project which uses a different conda env and i don't get the same data science library error. In fact jupyter server spins up like it should.
When i ran a similar hello world file in terminal the output doesn't run the extra conda activate
PS C:\Users\e104249\projects\market_classification> & C:/Users/e104249/AppData/Local/Continuum/anaconda3/envs/market_class/python.exe c:/Users/e104249/projects/market_classification/test_py.py hello World PS C:\Users\e104249\projects\market_classification>
Hmm. Not sure why the second one works then. The fact that conda activate isn't happening would explain the initial error. Do you have this setting turned on?
You might also try running conda init in powershell. That has been to know to cause problems if conda hasn't been initialized.
Yes, the setting mentioned above is turned on.
I ran 'conda init' in vs code terminal (powershell) then tried running the test file again. same result.
PS C:\Users\e104249\projects\corona_sale_exp> conda init powershell no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\Scripts\conda.exe no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\Scripts\conda-env.exe no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\Scripts\conda-script.py no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\Scripts\conda-env-script.py no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\condabin\conda.bat no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\Library\bin\conda.bat no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\condabin\_conda_activate.bat no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\condabin\rename_tmp.bat no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\condabin\conda_auto_activate.bat no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\condabin\conda_hook.bat no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\Scripts\activate.bat no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\condabin\activate.bat no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\condabin\deactivate.bat no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\Scripts\activate no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\Scripts\deactivate no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\etc\profile.d\conda.sh no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\etc\fish\conf.d\conda.fish no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\shell\condabin\Conda.psm1 no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\shell\condabin\conda-hook.ps1 no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\Lib\site-packages\xontrib\conda.xsh no change C:\Users\e104249\AppData\Local\Continuum\anaconda3\etc\profile.d\conda.csh no change C:\Users\e104249\Documents\WindowsPowerShell\profile.ps1 No action taken.
PS C:\Users\e104249\projects\corona_sale_exp> & C:/Users/e104249/AppData/Local/Continuum/anaconda3/envs/market_class/python.exe c:/Users/e104249/projects/corona_sale_exp/test_print.py hello world
Yeah we're not detecting that as a conda environment. I can see it here in your original console log:
[
{
"architecture":3,
"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe",
"version":{
"options":{
"loose":false,
"includePrerelease":false
},
"loose":false,
"raw":"3.6.5-final",
"major":3,
"minor":6,
"patch":5,
"prerelease":[
"final"
],
"build":[
],
"version":"3.6.5-final"
},
"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3",
"fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0",
"companyDisplayName":"Anaconda, Inc.",
"type":"Unknown", <-- This should say 'conda'
"cachedEntry":true
}
]```
is there anything i can do to fix this?
Not sure. Trying to see what might cause this. Likely we'd need an in house repro.
As a workaround, I'm guessing it would work if you did this:
What's weird is your other environments report conda. It's like just the corona_sale_exp is messed up.
One thing that might work is clearing your VS code workspace and global cache. That's kind of a big hammer though. It would clear all of your custom settings then.
What if you create a new environment with a different name?
As a workaround, I'm guessing it would work if you did this:
Run an anaconda prompt outside of VS code Activate your desired environment Start VS code from this environment
No luck with this either
I'll try clearing VS code workspace and global cache
Sorry I should have said, you have to close all instances of VS code first. VS code inherits the environment from whatever the first instance of VS code is.
So the steps would be this:
Followed the steps above and a new error pops up, Failed to connect to remote Jupyter notebook. Check that the Jupyter Server URI setting has a valid running server specified. http://localhost:8889/ TypeError: request to http://localhost:8889/api/contents/?1589403385064 failed, reason: connect ECONNREFUSED 127.0.0.1:8889
Would uninstalling and re-installing VS Code help?
@rchiodo I appreciate your help with this!
Uninstall and reinstalling VS code might help with the conda cache being wrong, but it wouldn't fix the jupyter ECONNREFUSED error.
That error is coming out because you're trying to connect to an already running jupyter server. You must have specified something other than local in this setting here:
Did you intend to do that?
I did. I was trying another workaround but it didn't work.
The below DID work. Guess i'll have to just do that for the the foreseeable future as the original way isn't producing the desired outcome.
Close all instances of VS code Start an anaconda prompt Activate your environment (it should show the environment name in the prompt) Run vscode from the prompt by typing 'code'
Thanks!
If i open VS Code cold:
The jupyter server start times out and the following output is generated:
```
Starting Jupyter from ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe with command line --no-browser --notebook-dir=C:\Users\e104249\AppData\Local\Temp\bdb19c07-11ab-4f58-8215-82502cfb742d --config=C:\Users\e104249\AppData\Local\Temp\bdb19c07-11ab-4f58-8215-82502cfb742d\jupyter_notebook_config.py --NotebookApp.iopub_data_rate_limit=10000000000.0
Starting Jupyter from ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe with command line --no-browser --notebook-dir=C:\Users\e104249\AppData\Local\Temp\ff9ed3ec-42e6-49bb-89d9-475182cfaaad --config=C:\Users\e104249\AppData\Local\Temp\ff9ed3ec-42e6-49bb-89d9-475182cfaaad\jupyter_notebook_config.py --NotebookApp.iopub_data_rate_limit=10000000000.0
[I 20:12:43.100 NotebookApp] JupyterLab extension loaded from C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\jupyterlab
[I 20:12:43.100 NotebookApp] JupyterLab application directory is C:\Users\e104249\AppData\Local\Continuum\anaconda3\share\jupyter\lab
[W 20:12:43.103 NotebookApp] Error loading server extension jupyterlab_code_formatter
Traceback (most recent call last):
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\notebook\notebookapp.py", line 1481, in init_server_extensions
mod = importlib.import_module(modulename)
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\importlib\__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "
Bug: Notebook Editor, Interactive Window, Editor cells
Steps to cause the bug to occur
I've gone thru other issues such as microsoft/vscode-python#10591 and microsoft/vscode-python#11749 Neither of those of seemed to help me rectify the issue i'm having. I've also tried rolling back to a different version of the python extension in vs code and that didn't solve it either.
High level, the jupyter kernel tries to fire up my conda env, the ipykernel error is thrown and then defaults to a different conda env.
Actual behavior
Data Science library ipykernel is not installed in interpreter Python 3.7.4 64-bit ('corona_sale_ex': conda). Install? the python extension throws the above error and tries to install ipykernel yet the requirement is already satisfied jupyter version list in the conda env
python -m jupyter --version jupyter core : 4.6.3 jupyter-notebook : 6.0.3 qtconsole : 4.7.3 ipython : 7.13.0 ipykernel : 5.2.1 jupyter client : 6.1.3 jupyter lab : 2.1.2 nbconvert : 5.6.1 ipywidgets : 7.5.1 nbformat : 5.0.6 traitlets : 4.3.3
Expected behavior
Jupyter should use the conda env
Jupyter server running: Local (using a different conda env other than one desired) Extension version: 2020.5.78807 VS Code version: 1.45 Setting python.jediEnabled: false Python and/or Anaconda version: base conda is 3.6.5, conda env is using python 3.7.4 OS: Windows Virtual environment: conda Developer Tools Console Output This as working for several months until a month ago. Anaconda has not been updated since.
Microsoft Data Science for VS Code Engineering Team: @rchiodo, @IanMatthewHuff, @DavidKutu, @DonJayamanne, @greazer
Output from selecting install of the following error
Data Science library ipykernel is not installed in interpreter Python 3.7.4 64-bit ('corona_sale_ex': conda). Install?
Output in terminal
Output for
Python
in theOutput
panel (View
→Output
, change the drop-down the upper-right of theOutput
panel toPython
)``` Requirement already up-to-date: ipykernel in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (5.2.1) Requirement already satisfied, skipping upgrade: traitlets>=4.1.0 in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from ipykernel) (4.3.3) Requirement already satisfied, skipping upgrade: ipython>=5.0.0 in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from ipykernel) (7.13.0) Requirement already satisfied, skipping upgrade: tornado>=4.2 in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from ipykernel) (6.0.4) Requirement already satisfied, skipping upgrade: jupyter-client in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from ipykernel) (6.1.3) Requirement already satisfied, skipping upgrade: ipython-genutils in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from traitlets>=4.1.0->ipykernel) (0.2.0) Requirement already satisfied, skipping upgrade: decorator in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from traitlets>=4.1.0->ipykernel) (4.4.2) Requirement already satisfied, skipping upgrade: six in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from traitlets>=4.1.0->ipykernel) (1.14.0) Requirement already satisfied, skipping upgrade: colorama; sys_platform == "win32" in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from ipython>=5.0.0->ipykernel) (0.4.3) Requirement already satisfied, skipping upgrade: setuptools>=18.5 in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from ipython>=5.0.0->ipykernel) (46.2.0.post20200511) Requirement already satisfied, skipping upgrade: pickleshare in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from ipython>=5.0.0->ipykernel) (0.7.5) Requirement already satisfied, skipping upgrade: prompt-toolkit!=3.0.0,!=3.0.1,<3.1.0,>=2.0.0 in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from ipython>=5.0.0->ipykernel) (3.0.4) Requirement already satisfied, skipping upgrade: jedi>=0.10 in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from ipython>=5.0.0->ipykernel) (0.17.0) Requirement already satisfied, skipping upgrade: backcall in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from ipython>=5.0.0->ipykernel) (0.1.0) Requirement already satisfied, skipping upgrade: pygments in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from ipython>=5.0.0->ipykernel) (2.6.1) Requirement already satisfied, skipping upgrade: python-dateutil>=2.1 in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from jupyter-client->ipykernel) (2.8.1) Requirement already satisfied, skipping upgrade: pyzmq>=13 in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from jupyter-client->ipykernel) (18.1.1) Requirement already satisfied, skipping upgrade: jupyter-core>=4.6.0 in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from jupyter-client->ipykernel) (4.6.3) Requirement already satisfied, skipping upgrade: wcwidth in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from prompt-toolkit!=3.0.0,!=3.0.1,<3.1.0,>=2.0.0->ipython>=5.0.0->ipykernel) (0.1.9) Requirement already satisfied, skipping upgrade: parso>=0.7.0 in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from jedi>=0.10->ipython>=5.0.0->ipykernel) (0.7.0) Requirement already satisfied, skipping upgrade: pywin32>=1.0; sys_platform == "win32" in c:\users\e104249\appdata\local\continuum\anaconda3\envs\corona_sale_exp\lib\site-packages (from jupyter-core>=4.6.0->jupyter-client->ipykernel) (227) ```
Full Console Log
Output for
Python
in theOutput
panel (View
→Output
, change the drop-down the upper-right of theOutput
panel toPython
)``` TMScopeRegistry.ts:45 Overwriting grammar scope name to file mapping for scope source.sql. Old grammar file: file:///c%3A/Users/e104249/AppData/Local/Programs/Microsoft%20VS%20Code/resources/app/extensions/sql/syntaxes/sql.tmLanguage.json. New grammar file: file:///c%3A/Users/e104249/.vscode/extensions/ms-mssql.mssql-1.9.0/syntaxes/SQL.plist register @ TMScopeRegistry.ts:45 TMScopeRegistry.ts:45 Overwriting grammar scope name to file mapping for scope source.yaml. Old grammar file: file:///c%3A/Users/e104249/AppData/Local/Programs/Microsoft%20VS%20Code/resources/app/extensions/yaml/syntaxes/yaml.tmLanguage.json. New grammar file: file:///c%3A/Users/e104249/.vscode/extensions/redhat.vscode-yaml-0.8.0/syntaxes/yaml.tmLanguage.json register @ TMScopeRegistry.ts:45 console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: id is 68bd5446-0858-4307-a12c-90e398f1e240 console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Attempting to start a server because of preload conditions ... console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Display locator refreshing progress, Class name = p, completed in 1ms, has a falsy return value, , Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Notify locators are locating, Class name = p, completed in 2ms, has a falsy return value, , Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Detected refreshing of Interpreters, Class name = p, completed in 2ms, has a falsy return value, Arg 1: {}, Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Detected refreshing of Interpreters, Class name = p, completed in 1ms, has a falsy return value, Arg 1: {}, Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Detected refreshing of Interpreters, Class name = p, completed in 0ms, has a falsy return value, Arg 1: {}, Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Detected refreshing of Interpreters, Class name = p, completed in 0ms, has a falsy return value, Arg 1: {}, Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Create file systemwatcher with pattern *\python.exe console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Create file systemwatcher with pattern *\*\python.exe console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Detected refreshing of Interpreters, Class name = p, completed in 0ms, has a falsy return value, Arg 1: {}, Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Notify locators are locating, Class name = p, completed in 1ms, has a falsy return value, , Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Detected refreshing of Interpreters, Class name = p, completed in 1ms, has a falsy return value, Arg 1: {}, Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Detected refreshing of Interpreters, Class name = p, completed in 0ms, has a falsy return value, Arg 1: {}, Return Value: undefined console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Get Interpreters in CacheableLocatorService, Class name = g, completed in 41ms, has a truthy return value, Arg 1:, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Get Interpreters in CacheableLocatorService, Class name = g, completed in 22ms, has a truthy return value, Arg 1: , Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Get Interpreters in CacheableLocatorService, Class name = g, completed in 20ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","envName":"anaconda3","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","envName":"trade_zone_refresh","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","envName":"mktg_unified_forecast","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","envName":"market_class","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","envName":"cohort_analysis","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","envName":"vaex_tutorial","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Get Interpreters in CacheableLocatorService, Class name = g, completed in 19ms, has a truthy return value, Arg 1: , Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Register Interpreter Watcher, Class name = p, completed in 13ms, has a falsy return value, Arg 1: , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Get Interpreters in CacheableLocatorService, Class name = g, completed in 15ms, has a truthy return value, Arg 1: , Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Get Interpreters in CacheableLocatorService, Class name = g, completed in 12ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Get Interpreters in CacheableLocatorService, Class name = g, completed in 9ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Build the workspace interpreter watcher, Class name = d, completed in 37ms, has a truthy return value, Arg 1: , Return Value:
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Rule = settings, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: ZMQ install verified.
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: autoSelectInterpreter, Class name = f, completed in 25ms, has a falsy return value, Arg 1: , Arg 2: , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Rule = settings, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: autoSelectInterpreter, Class name = f, completed in 2ms, has a falsy return value, Arg 1: , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: autoSelectInterpreter, Class name = f, completed in 3ms, has a falsy return value, Arg 1: , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Checking for server existence.
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Checking for server usability.
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Current value for rule system is {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Current value for rule currentPath is {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Current value for rule windowsRegistry is {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Get Interpreters in CacheableLocatorService, Class name = g, completed in 3ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Selected Interpreter from windowsRegistry, {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Get Interpreters in CacheableLocatorService, Class name = g, completed in 3ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Selected Interpreter from currentPath, {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: , Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","envName":"anaconda3","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","envName":"trade_zone_refresh","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","envName":"mktg_unified_forecast","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","envName":"market_class","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","envName":"cohort_analysis","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","envName":"vaex_tutorial","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","cachedEntry":true}]
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: , Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Get Interpreters, Class name = g, completed in 342ms, has a truthy return value, Arg 1: , Arg 2: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","cachedEntry":true,"envName":"anaconda3","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","envName":"trade_zone_refresh","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","envName":"mktg_unified_forecast","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","envName":"market_class","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","envName":"cohort_analysis","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","envName":"vaex_tutorial","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Get Interpreters, Class name = g, completed in 3ms, has a truthy return value, Arg 1: , Arg 2: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","cachedEntry":true,"envName":"anaconda3","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","envName":"trade_zone_refresh","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","envName":"mktg_unified_forecast","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","envName":"market_class","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","envName":"cohort_analysis","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","envName":"vaex_tutorial","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: Selected Interpreter from system, {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","cachedEntry":true,"displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:43: > pyenv root
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: setGlobalInterpreter, Class name = f, completed in 658ms, has a falsy return value, Arg 1: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: setGlobalInterpreter, Class name = f, completed in 656ms, has a falsy return value, Arg 1: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: setGlobalInterpreter, Class name = f, completed in 655ms, has a falsy return value, Arg 1: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Executing next rule from cachedInterpreters
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Executing next rule from currentPath
3console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: autoSelectInterpreter, Class name = f, completed in 927ms, has a falsy return value, Arg 1: , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > python3.7 c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > python3.6 c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > python3 c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > python2 c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > python c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > py -3.7 c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > py -3 c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > py -3.6 c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > py -2 c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Cached data exists getEnvironmentVariables, c:\Users\e104249\projects\corona_sale_exp\notebooks\1_jk_explore.py
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > ~\AppData\Local\Continuum\anaconda3 info --json
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Build the workspace interpreter watcher, Class name = d, completed in 3ms, has a truthy return value, Arg 1: , Return Value:
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Detection of Python Interpreter for Command python3.7 and args c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c import sys;print(sys.executable) failed
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Detection of Python Interpreter for Command python3.6 and args c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c import sys;print(sys.executable) failed
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Detection of Python Interpreter for Command python3 and args c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c import sys;print(sys.executable) failed
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Detection of Python Interpreter for Command python2 and args c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c import sys;print(sys.executable) failed
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Detection of Python Interpreter for Command py and args -3.7 c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c import sys;print(sys.executable) failed
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Detection of Python Interpreter for Command py and args -3 c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c import sys;print(sys.executable) failed
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Detection of Python Interpreter for Command py and args -3.6 c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c import sys;print(sys.executable) failed
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Detection of Python Interpreter for Command py and args -2 c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c import sys;print(sys.executable) failed
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: setGlobalInterpreter, Class name = f, completed in 819ms, has a falsy return value, Arg 1: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","cachedEntry":true,"displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: autoSelectInterpreter, Class name = f, completed in 1173ms, has a falsy return value, Arg 1: , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Interpreters returned by CondaEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Interpreters returned by CondaEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Get Conda environments, Class name = _, completed in 1ms, has a falsy return value, Arg 1: false, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Get Conda environments, Class name = _, completed in 0ms, has a falsy return value, Arg 1: false, Return Value: undefined
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Cached data exists getEnvironmentVariables,
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > ~\AppData\Local\Continuum\anaconda3 env list
2console.ts:137 [Extension Host] Error Python Extension: 2020-05-13 09:47:44: Failed to get conda environment list from conda [Error: spawn C:\Users\e104249\AppData\Local\Continuum\anaconda3 ENOENT at Process.ChildProcess._handle.onexit (internal/child_process.js:264:19) at onErrorNT (internal/child_process.js:456:16) at processTicksAndRejections (internal/process/task_queues.js:77:11)] { errno: 'ENOENT', code: 'ENOENT', syscall: 'spawn C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3', path: 'C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3', spawnargs: [ 'env', 'list' ]}
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Interpreters returned by WindowsRegistryService are of count 1
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Interpreters returned by WindowsRegistryService are [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Unknown"}]
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Get Conda environments, Class name = _, completed in 21ms, has a falsy return value, Arg 1: true, Return Value: undefined
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Interpreters returned by CurrentPathService are of count 2
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Interpreters returned by CurrentPathService are [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Get Conda environments, Class name = _, completed in 0ms, has a falsy return value, Arg 1: false, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > ~\AppData\Local\Continuum\anaconda3 env list
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Get Conda environments, Class name = _, completed in 0ms, has a falsy return value, Arg 1: false, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Get language server folder name, Class name = f, completed in 48ms, has a truthy return value, Arg 1: , Return Value: "languageServer.0.5.45"
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > ~\AppData\Local\Continuum\anaconda3 env list
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > ~\AppData\Local\Continuum\anaconda3 env list
2console.ts:137 [Extension Host] Error Python Extension: 2020-05-13 09:47:44: Failed to get conda environment list from conda [Error: spawn C:\Users\e104249\AppData\Local\Continuum\anaconda3 ENOENT at Process.ChildProcess._handle.onexit (internal/child_process.js:264:19) at onErrorNT (internal/child_process.js:456:16) at processTicksAndRejections (internal/process/task_queues.js:77:11)] { errno: 'ENOENT', code: 'ENOENT', syscall: 'spawn C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3', path: 'C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3', spawnargs: [ 'env', 'list' ]}
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Get Conda environments, Class name = _, completed in 19ms, has a falsy return value, Arg 1: true, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Interpreters returned by VirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Interpreters returned by VirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Interpreters returned by KnownPathsService are of count 1
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Interpreters returned by KnownPathsService are [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Get Conda environments, Class name = _, completed in 9ms, has a falsy return value, Arg 1: true, Return Value: undefined
console.ts:137 [Extension Host] Error Python Extension: 2020-05-13 09:47:44: Failed to get conda environment list from conda [Error: spawn C:\Users\e104249\AppData\Local\Continuum\anaconda3 ENOENT at Process.ChildProcess._handle.onexit (internal/child_process.js:264:19) at onErrorNT (internal/child_process.js:456:16) at processTicksAndRejections (internal/process/task_queues.js:77:11)] { errno: 'ENOENT', code: 'ENOENT', syscall: 'spawn C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3', path: 'C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3', spawnargs: [ 'env', 'list' ]}
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Get Conda environments, Class name = _, completed in 16ms, has a falsy return value, Arg 1: true, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Interpreters returned by CondaEnvFileService are of count 7
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Interpreters returned by CondaEnvFileService are [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","envName":"anaconda3"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","envName":"trade_zone_refresh"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","envName":"mktg_unified_forecast"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","envName":"market_class"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","envName":"cohort_analysis"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","envName":"vaex_tutorial"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a truthy return value, , Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Hide locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: All locators have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Get language server folder name, Class name = f, completed in 3ms, has a truthy return value, Arg 1: , Return Value: "languageServer.0.5.45"
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Cached data exists getEnvironmentVariables,
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: getActivatedEnvironmentVariables, Class name = E, completed in 1588ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: getActivatedEnvironmentVariables, Class name = E, completed in 1590ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Cached data exists getEnvironmentVariables,
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c "import notebook"
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c "import jupyter"
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Get Conda environments, Class name = _, completed in 0ms, has a falsy return value, Arg 1: false, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > ~\AppData\Local\Continuum\anaconda3 env list
console.ts:137 [Extension Host] Error Python Extension: 2020-05-13 09:47:44: Failed to get conda environment list from conda [Error: spawn C:\Users\e104249\AppData\Local\Continuum\anaconda3 ENOENT at Process.ChildProcess._handle.onexit (internal/child_process.js:264:19) at onErrorNT (internal/child_process.js:456:16) at processTicksAndRejections (internal/process/task_queues.js:77:11)] { errno: 'ENOENT', code: 'ENOENT', syscall: 'spawn C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3', path: 'C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3', spawnargs: [ 'env', 'list' ]}
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Get Conda environments, Class name = _, completed in 4ms, has a falsy return value, Arg 1: true, Return Value: undefined
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: getActivatedEnvironmentVariables, Class name = E, completed in 1698ms, has a falsy return value, Arg 1: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: getActivatedEnvironmentVariables, Class name = E, completed in 146ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Cached data exists getEnvironmentVariables,
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: > ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c "import ipykernel"
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: getActivatedEnvironmentVariables, Class name = E, completed in 36ms, has a falsy return value, Arg 1: , Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Cached data exists getEnvironmentVariables, c:\Users\e104249\projects\corona_sale_exp\notebooks\1_jk_explore.py
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:44: Get language server folder name, Class name = f, completed in 3ms, has a truthy return value, Arg 1: , Return Value: "languageServer.0.5.45"
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: getActivatedEnvironmentVariables, Class name = E, completed in 1ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 3: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Cached data exists getEnvironmentVariables,
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: > ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py jupyter kernelspec --version
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Starting Language Server, Class name = r, completed in 785ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Cached data exists getEnvironmentVariables, c:\Users\e104249\projects\corona_sale_exp\notebooks\1_jk_explore.py
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Rule = settings, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: autoSelectInterpreter, Class name = f, completed in 1ms, has a falsy return value, Arg 1: undefined, Arg 2: , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Rule = settings, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Executing next rule from workspaceEnvs
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: autoSelectInterpreter, Class name = f, completed in 1ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: [object Object]. Shell identified as undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Shell path 'C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe'
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Shell path identified as shell 'powershell'
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Terminal shell path 'C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe' identified as shell 'powershell'
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: [object Object]. Shell identified as powershell
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Shell identified as 'powershell'
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, has a truthy return value, Arg 1: , Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","envName":"anaconda3"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","envName":"trade_zone_refresh"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","envName":"mktg_unified_forecast"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","envName":"market_class"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","envName":"cohort_analysis"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","envName":"vaex_tutorial"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, has a truthy return value, Arg 1: , Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: , Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: , Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Cached data exists KeyPrefix=Cache_Method_Output__.getCondaInfo-Args=
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: > ~\AppData\Local\Continuum\anaconda3 --version
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters, Class name = g, completed in 3ms, has a truthy return value, Arg 1: , Arg 2: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envName":"anaconda3","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","envName":"trade_zone_refresh"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","envName":"mktg_unified_forecast"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","envName":"market_class"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","envName":"cohort_analysis"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","envName":"vaex_tutorial"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Create file systemwatcher with pattern *\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Create file systemwatcher with pattern *\*\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Display locator refreshing progress, Class name = p, completed in 1ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Notify locators are locating, Class name = p, completed in 2ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Detected refreshing of Interpreters, Class name = p, completed in 2ms, has a falsy return value, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Register Interpreter Watcher, Class name = p, completed in 2ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 3ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Selected Interpreter from windowsRegistry, {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 4ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Selected Interpreter from currentPath, {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 3ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 4ms, has a truthy return value, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 4ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","envName":"anaconda3"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","envName":"trade_zone_refresh"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","envName":"mktg_unified_forecast"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","envName":"market_class"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","envName":"cohort_analysis"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","envName":"vaex_tutorial"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 4ms, has a truthy return value, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Build the workspace interpreter watcher, Class name = d, completed in 4ms, has a truthy return value, Arg 1: undefined, Return Value:
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters, Class name = g, completed in 6ms, has a truthy return value, Arg 1: undefined, Arg 2: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envName":"anaconda3","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","envName":"trade_zone_refresh"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","envName":"mktg_unified_forecast"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","envName":"market_class"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","envName":"cohort_analysis"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","envName":"vaex_tutorial"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Selected Interpreter from system, {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Current value for rule system is {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Current value for rule currentPath is {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Current value for rule windowsRegistry is {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Current value for rule workspaceEnvs is nothing
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: setGlobalInterpreter, Class name = f, completed in 11ms, has a falsy return value, Arg 1: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Unknown"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: setGlobalInterpreter, Class name = f, completed in 12ms, has a falsy return value, Arg 1: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: setGlobalInterpreter, Class name = f, completed in 10ms, has a falsy return value, Arg 1: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Executing next rule from currentPath
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Executing next rule from system
3console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: autoSelectInterpreter, Class name = f, completed in 34ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: setGlobalInterpreter, Class name = f, completed in 9ms, has a falsy return value, Arg 1: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Executing next rule from cachedInterpreters
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: autoSelectInterpreter, Class name = f, completed in 35ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a truthy return value, , Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Hide locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: All locators have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: getActivatedEnvironmentVariables, Class name = E, completed in 0ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: getActivatedEnvironmentVariables, Class name = E, completed in 1ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Starting notebook server.
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Connecting to history server
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Getting kernel specs for history server
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Display locator refreshing progress, Class name = p, completed in 1ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Notify locators are locating, Class name = p, completed in 1ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Detected refreshing of Interpreters, Class name = p, completed in 2ms, has a falsy return value, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Launching history server
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Starting Notebook
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 4ms, has a truthy return value, Arg 1: undefined, Arg 2: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 5ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 5ms, has a truthy return value, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 5ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","envName":"anaconda3"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","envName":"trade_zone_refresh"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","envName":"mktg_unified_forecast"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","envName":"market_class"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","envName":"cohort_analysis"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","envName":"vaex_tutorial"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp"}]
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 3ms, has a truthy return value, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 3ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 3ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Get Interpreters, Class name = g, completed in 6ms, has a truthy return value, Arg 1: undefined, Arg 2: {"onSuggestion":true}, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envName":"anaconda3","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","envName":"trade_zone_refresh"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","envName":"mktg_unified_forecast"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","envName":"market_class"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","envName":"cohort_analysis"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","envName":"vaex_tutorial"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: getActivatedEnvironmentVariables, Class name = E, completed in 0ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: getActivatedEnvironmentVariables, Class name = E, completed in 1ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 3: true
4console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:45: > ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: > ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py vscode_datascience_helpers.daemon --daemon-module=vscode_datascience_helpers.jupyter_daemon -v
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a truthy return value, , Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Hide locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: All locators have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: getActivatedEnvironmentVariables, Class name = E, completed in 0ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Generating custom default config at C:\Users\e104249\AppData\Local\Temp\eca93045-4c85-4c2f-a0bd-7f05d7c4bc5b\jupyter_notebook_config.py
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Starting Jupyter Notebook
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: getActivatedEnvironmentVariables, Class name = E, completed in 0ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Cached data exists getEnvironmentVariables,
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Asking for kernelspecs from jupyter
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: > ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe (daemon) -m jupyter notebook --no-browser --notebook-dir=C:\Users\e104249\AppData\Local\Temp\eca93045-4c85-4c2f-a0bd-7f05d7c4bc5b --config=C:\Users\e104249\AppData\Local\Temp\eca93045-4c85-4c2f-a0bd-7f05d7c4bc5b\jupyter_notebook_config.py --NotebookApp.iopub_data_rate_limit=10000000000.0
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: > ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe (daemon) -m jupyter kernelspec list --json
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Waiting for Jupyter Notebook
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Python Daemon (pid: 9496): Execute rpc method exec_module_observable in DS Daemon
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Python Daemon (pid: 9844): Execute rpc method exec_module in DS Daemon
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Python Daemon (pid: 13056): Execute rpc method exec_module in DS Daemon
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Python Daemon (pid: 9496): Execute rpc method exec_module_observable from C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Python Daemon (pid: 9844): Execute rpc method exec_module from C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Python Daemon (pid: 13056): Execute rpc method exec_module from C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Python Daemon (pid: 9496): Exec in DS Daemon (observable) jupyter with args ['notebook', '--no-browser', '--notebook-dir=C:\\Users\\e104249\\AppData\\Local\\Temp\\eca93045-4c85-4c2f-a0bd-7f05d7c4bc5b', '--config=C:\\Users\\e104249\\AppData\\Local\\Temp\\eca93045-4c85-4c2f-a0bd-7f05d7c4bc5b\\jupyter_notebook_config.py', '--NotebookApp.iopub_data_rate_limit=10000000000.0']
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Python Daemon (pid: 9844): Exec in DS Daemon jupyter with args ['kernelspec', 'list', '--json']
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:47:46: Python Daemon (pid: 13056): Exec in DS Daemon jupyter with args ['kernelspec', 'list', '--json']
mainThreadExtensionService.ts:65 [[object Object]]Message header must separate key and value using :
$onExtensionRuntimeError @ mainThreadExtensionService.ts:65
mainThreadExtensionService.ts:66 Error: Message header must separate key and value using :
at c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:591476
at Array.forEach ()
at a.tryReadHeaders (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:591427)
at l.onData (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:593286)
at Socket. (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:593091)
at Socket.emit (events.js:203:13)
at addChunk (_stream_readable.js:295:12)
at readableAddChunk (_stream_readable.js:276:11)
at Socket.Readable.push (_stream_readable.js:210:10)
at Pipe.onStreamRead (internal/stream_base_commons.js:166:17)
$onExtensionRuntimeError @ mainThreadExtensionService.ts:66
mainThreadExtensionService.ts:65 [[object Object]]Message header must separate key and value using :
$onExtensionRuntimeError @ mainThreadExtensionService.ts:65
mainThreadExtensionService.ts:66 Error: Message header must separate key and value using :
at c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:591476
at Array.forEach ()
at a.tryReadHeaders (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:591427)
at l.onData (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:593286)
at Socket. (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:593091)
at Socket.emit (events.js:203:13)
at addChunk (_stream_readable.js:295:12)
at readableAddChunk (_stream_readable.js:276:11)
at Socket.Readable.push (_stream_readable.js:210:10)
at Pipe.onStreamRead (internal/stream_base_commons.js:166:17)
$onExtensionRuntimeError @ mainThreadExtensionService.ts:66
mainThreadExtensionService.ts:65 [[object Object]]Message header must separate key and value using :
$onExtensionRuntimeError @ mainThreadExtensionService.ts:65
mainThreadExtensionService.ts:66 Error: Message header must separate key and value using :
at c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:591476
at Array.forEach ()
at a.tryReadHeaders (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:591427)
at l.onData (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:593286)
at Socket. (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:593091)
at Socket.emit (events.js:203:13)
at addChunk (_stream_readable.js:295:12)
at readableAddChunk (_stream_readable.js:276:11)
at Socket.Readable.push (_stream_readable.js:210:10)
at Pipe.onStreamRead (internal/stream_base_commons.js:166:17)
$onExtensionRuntimeError @ mainThreadExtensionService.ts:66
mainThreadExtensionService.ts:65 [[object Object]]Message header must separate key and value using :
$onExtensionRuntimeError @ mainThreadExtensionService.ts:65
mainThreadExtensionService.ts:66 Error: Message header must separate key and value using :
at c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:591476
at Array.forEach ()
at a.tryReadHeaders (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:591427)
at l.onData (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:593286)
at Socket. (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:593091)
at Socket.emit (events.js:203:13)
at addChunk (_stream_readable.js:295:12)
at readableAddChunk (_stream_readable.js:276:11)
at Socket.Readable.push (_stream_readable.js:210:10)
at Pipe.onStreamRead (internal/stream_base_commons.js:166:17)
$onExtensionRuntimeError @ mainThreadExtensionService.ts:66
mainThreadExtensionService.ts:65 [[object Object]]Message header must separate key and value using :
$onExtensionRuntimeError @ mainThreadExtensionService.ts:65
mainThreadExtensionService.ts:66 Error: Message header must separate key and value using :
at c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:591476
at Array.forEach ()
at a.tryReadHeaders (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:591427)
at l.onData (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:593286)
at Socket. (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:593091)
at Socket.emit (events.js:203:13)
at addChunk (_stream_readable.js:295:12)
at readableAddChunk (_stream_readable.js:276:11)
at Socket.Readable.push (_stream_readable.js:210:10)
at Pipe.onStreamRead (internal/stream_base_commons.js:166:17)
$onExtensionRuntimeError @ mainThreadExtensionService.ts:66
mainThreadExtensionService.ts:65 [[object Object]]Message header must separate key and value using :
$onExtensionRuntimeError @ mainThreadExtensionService.ts:65
mainThreadExtensionService.ts:66 Error: Message header must separate key and value using :
at c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:591476
at Array.forEach ()
at a.tryReadHeaders (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:591427)
at l.onData (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:593286)
at Socket. (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:593091)
at Socket.emit (events.js:203:13)
at addChunk (_stream_readable.js:295:12)
at readableAddChunk (_stream_readable.js:276:11)
at Socket.Readable.push (_stream_readable.js:210:10)
at Pipe.onStreamRead (internal/stream_base_commons.js:166:17)
$onExtensionRuntimeError @ mainThreadExtensionService.ts:66
mainThreadExtensionService.ts:65 [[object Object]]Message header must separate key and value using :
$onExtensionRuntimeError @ mainThreadExtensionService.ts:65
mainThreadExtensionService.ts:66 Error: Message header must separate key and value using :
at c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:591476
at Array.forEach ()
at a.tryReadHeaders (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:591427)
at l.onData (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:593286)
at Socket. (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:593091)
at Socket.emit (events.js:203:13)
at addChunk (_stream_readable.js:295:12)
at readableAddChunk (_stream_readable.js:276:11)
at Socket.Readable.push (_stream_readable.js:210:10)
at Pipe.onStreamRead (internal/stream_base_commons.js:166:17)
$onExtensionRuntimeError @ mainThreadExtensionService.ts:66
mainThreadExtensionService.ts:65 [[object Object]]Message header must separate key and value using :
$onExtensionRuntimeError @ mainThreadExtensionService.ts:65
mainThreadExtensionService.ts:66 Error: Message header must separate key and value using :
at c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:591476
at Array.forEach ()
at a.tryReadHeaders (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:591427)
at l.onData (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:593286)
at Socket. (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:593091)
at Socket.emit (events.js:203:13)
at addChunk (_stream_readable.js:295:12)
at readableAddChunk (_stream_readable.js:276:11)
at Socket.Readable.push (_stream_readable.js:210:10)
at Pipe.onStreamRead (internal/stream_base_commons.js:166:17)
$onExtensionRuntimeError @ mainThreadExtensionService.ts:66
2console.ts:137 [Extension Host] (node:12996) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-05-13 09:48:46: Error starting server in serverPreload: [i [Error]: at new i (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:480683) at P.start (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:16:593525)
Error: The Jupyter notebook server failed to launch in time at t.JupyterConnectionWaiter.rejectStartPromise (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:659368) at t.JupyterConnectionWaiter.launchTimedOut (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:658874) at Timeout. (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:659750) at listOnTimeout (internal/timers.js:531:17) at processTimers (internal/timers.js:475:7)]
t.log @ console.ts:137
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:20: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:20: > ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\normalizeForInterpreter.py "import pandas as pdimport teradata as tdimport numpy as npimport statsmodels.api as smfrom pathlib import Pathimport datetime"
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Waiting for jupyter server and web panel ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Loading web panel. Panel is notset
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Checking for server existence.
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Loading web view...
console.ts:137 [Extension Host] Warn Python Extension: 2020-05-13 09:50:21: startHttpServer=false, will not be used. Temporarily turned off
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Web view created.
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Checking for server usability.
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Starting notebook server.
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Connecting to history server
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Getting kernel specs for history server
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Launching history server
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Starting Notebook
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","envName":"anaconda3"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","envName":"trade_zone_refresh"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","envName":"mktg_unified_forecast"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","envName":"market_class"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","envName":"cohort_analysis"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","envName":"vaex_tutorial"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: undefined, Arg 2: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Get Interpreters in CacheableLocatorService, Class name = g, completed in 3ms, has a truthy return value, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Get Interpreters in CacheableLocatorService, Class name = g, completed in 3ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Get Interpreters in CacheableLocatorService, Class name = g, completed in 3ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Get Interpreters, Class name = g, completed in 5ms, has a truthy return value, Arg 1: undefined, Arg 2: {"onSuggestion":true}, Return Value: [{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envName":"anaconda3","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\trade_zone_refresh","envName":"trade_zone_refresh"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\mktg_unified_forecast","envName":"mktg_unified_forecast"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\market_class","envName":"market_class"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.6.5-final","major":3,"minor":6,"patch":5,"prerelease":["final"],"build":[],"version":"3.6.5-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","fileHash":"6220768df2501aa7b202ad9d27a72c819fded46f5464261fd317a47553d2638a47e0adfb53b4c1a930025da44eb704143d4551e081d731c6ee8b2e6ee971d8d0","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\cohort_analysis","envName":"cohort_analysis"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\vaex_tutorial","envName":"vaex_tutorial"},{"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: getActivatedEnvironmentVariables, Class name = E, completed in 0ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Asking for kernelspecs from jupyter
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: getActivatedEnvironmentVariables, Class name = E, completed in 1ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Asking for kernelspecs from jupyter
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Generating custom default config at C:\Users\e104249\AppData\Local\Temp\b02bbc92-1d3c-4bbc-a8e8-06ff41fba57e\jupyter_notebook_config.py
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Starting Jupyter Notebook
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: getActivatedEnvironmentVariables, Class name = E, completed in 0ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Cached data exists getEnvironmentVariables,
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: > ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py jupyter notebook --no-browser --notebook-dir=C:\Users\e104249\AppData\Local\Temp\b02bbc92-1d3c-4bbc-a8e8-06ff41fba57e --config=C:\Users\e104249\AppData\Local\Temp\b02bbc92-1d3c-4bbc-a8e8-06ff41fba57e\jupyter_notebook_config.py --NotebookApp.iopub_data_rate_limit=10000000000.0
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:21: Waiting for Jupyter Notebook
4console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:22: > ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py jupyter kernelspec list --json
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:22: Web view react rendered
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:22: Request for onigasm file at c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\node_modules\onigasm\lib\onigasm.wasm
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:22: Request for tmlanguage file.
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:22: Searching for token colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:22: Attempting search for colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:22: Searching for token colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:22: Attempting search for colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:22: Searching for token colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:22: Attempting search for colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:22: Searching for token colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:22: Attempting search for colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Searching for token colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Attempting search for colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Loading colors from c:\Users\e104249\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\theme-monokai\themes\monokai-color-theme.json ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Attempting search for colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Loading base colors from c:\Users\e104249\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\theme-monokai\themes\monokai-color-theme.json ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Loading colors from c:\Users\e104249\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\theme-monokai\themes\monokai-color-theme.json ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Searching for token colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Attempting search for colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Loading colors from c:\Users\e104249\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\theme-monokai\themes\monokai-color-theme.json ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Using colors to generate CSS ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Attempting search for colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Loading base colors from c:\Users\e104249\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\theme-monokai\themes\monokai-color-theme.json ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Loading colors from c:\Users\e104249\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\theme-monokai\themes\monokai-color-theme.json ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Attempting search for colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Loading base colors from c:\Users\e104249\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\theme-monokai\themes\monokai-color-theme.json ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Searching for token colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Attempting search for colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Searching for token colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Attempting search for colors ...
3console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Loading colors from c:\Users\e104249\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\theme-monokai\themes\monokai-color-theme.json ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Using colors to generate CSS ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Attempting search for colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Loading base colors from c:\Users\e104249\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\theme-monokai\themes\monokai-color-theme.json ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Using colors to generate CSS ...
3console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Attempting search for colors ...
3console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Loading base colors from c:\Users\e104249\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\theme-monokai\themes\monokai-color-theme.json ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Using colors to generate CSS ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Loading colors from c:\Users\e104249\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\theme-monokai\themes\monokai-color-theme.json ...
3console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Using colors to generate CSS ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Attempting search for colors ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Loading base colors from c:\Users\e104249\AppData\Local\Programs\Microsoft VS Code\resources\app\extensions\theme-monokai\themes\monokai-color-theme.json ...
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:23: Using colors to generate CSS ...
webviewElement.ts:287 [Embedded Page] Could not create web worker(s). Falling back to loading web worker code in main thread, which might cause UI freezes. Please see https://github.com/Microsoft/monaco-editor#faq
webviewElement.ts:287 [Embedded Page] Failed to construct 'Worker': Script at 'vscode-resource://file///c%3A/Users/e104249/projects/corona_sale_exp/notebooks/editor.worker.js' cannot be accessed from origin 'null'.
4console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:24: > ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\vscode_datascience_helpers\getJupyterKernels.py
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:26: [I 09:50:26.059 NotebookApp] JupyterLab extension loaded from C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\jupyterlab
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:26: [I 09:50:26.059 NotebookApp] JupyterLab extension loaded from C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\jupyterlab
[I 09:50:26.059 NotebookApp] JupyterLab application directory is C:\Users\e104249\AppData\Local\Continuum\anaconda3\share\jupyter\lab
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:26: [I 09:50:26.059 NotebookApp] JupyterLab extension loaded from C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\jupyterlab
[I 09:50:26.059 NotebookApp] JupyterLab application directory is C:\Users\e104249\AppData\Local\Continuum\anaconda3\share\jupyter\lab
[W 09:50:26.063 NotebookApp] Error loading server extension jupyterlab_code_formatter
Traceback (most recent call last):
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\notebook\notebookapp.py", line 1481, in init_server_extensions
mod = importlib.import_module(modulename)
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\importlib\__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 994, in _gcd_import
File "", line 971, in _find_and_load
File "", line 953, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'jupyterlab_code_formatter'
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:26: [I 09:50:26.059 NotebookApp] JupyterLab extension loaded from C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\jupyterlab
[I 09:50:26.059 NotebookApp] JupyterLab application directory is C:\Users\e104249\AppData\Local\Continuum\anaconda3\share\jupyter\lab
[W 09:50:26.063 NotebookApp] Error loading server extension jupyterlab_code_formatter
Traceback (most recent call last):
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\notebook\notebookapp.py", line 1481, in init_server_extensions
mod = importlib.import_module(modulename)
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\importlib\__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 994, in _gcd_import
File "", line 971, in _find_and_load
File "", line 953, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'jupyterlab_code_formatter'
[W 09:50:26.067 NotebookApp] Error loading server extension jupyterlab_git
Traceback (most recent call last):
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\notebook\notebookapp.py", line 1481, in init_server_extensions
mod = importlib.import_module(modulename)
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\importlib\__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 994, in _gcd_import
File "", line 971, in _find_and_load
File "", line 953, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'jupyterlab_git'
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:26: [I 09:50:26.059 NotebookApp] JupyterLab extension loaded from C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\jupyterlab
[I 09:50:26.059 NotebookApp] JupyterLab application directory is C:\Users\e104249\AppData\Local\Continuum\anaconda3\share\jupyter\lab
[W 09:50:26.063 NotebookApp] Error loading server extension jupyterlab_code_formatter
Traceback (most recent call last):
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\notebook\notebookapp.py", line 1481, in init_server_extensions
mod = importlib.import_module(modulename)
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\importlib\__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 994, in _gcd_import
File "", line 971, in _find_and_load
File "", line 953, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'jupyterlab_code_formatter'
[W 09:50:26.067 NotebookApp] Error loading server extension jupyterlab_git
Traceback (most recent call last):
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\notebook\notebookapp.py", line 1481, in init_server_extensions
mod = importlib.import_module(modulename)
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\importlib\__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 994, in _gcd_import
File "", line 971, in _find_and_load
File "", line 953, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'jupyterlab_git'
[I 09:50:26.301 NotebookApp] Serving notebooks from local directory: C:\Users\e104249\AppData\Local\Temp\b02bbc92-1d3c-4bbc-a8e8-06ff41fba57e
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:26: [I 09:50:26.059 NotebookApp] JupyterLab extension loaded from C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\jupyterlab
[I 09:50:26.059 NotebookApp] JupyterLab application directory is C:\Users\e104249\AppData\Local\Continuum\anaconda3\share\jupyter\lab
[W 09:50:26.063 NotebookApp] Error loading server extension jupyterlab_code_formatter
Traceback (most recent call last):
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\notebook\notebookapp.py", line 1481, in init_server_extensions
mod = importlib.import_module(modulename)
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\importlib\__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 994, in _gcd_import
File "", line 971, in _find_and_load
File "", line 953, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'jupyterlab_code_formatter'
[W 09:50:26.067 NotebookApp] Error loading server extension jupyterlab_git
Traceback (most recent call last):
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\notebook\notebookapp.py", line 1481, in init_server_extensions
mod = importlib.import_module(modulename)
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\importlib\__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 994, in _gcd_import
File "", line 971, in _find_and_load
File "", line 953, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'jupyterlab_git'
[I 09:50:26.301 NotebookApp] Serving notebooks from local directory: C:\Users\e104249\AppData\Local\Temp\b02bbc92-1d3c-4bbc-a8e8-06ff41fba57e
[I 09:50:26.301 NotebookApp] 0 active kernels
[I 09:50:26.301 NotebookApp] The Jupyter Notebook is running at:
[I 09:50:26.301 NotebookApp] http://localhost:8888/?token=d110c55c2385b1671824e044f08ca64c051451e24ff8de9c
[I 09:50:26.301 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:26: getActivatedEnvironmentVariables, Class name = E, completed in 1ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:26: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:26: [I 09:50:26.059 NotebookApp] JupyterLab extension loaded from C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\jupyterlab
[I 09:50:26.059 NotebookApp] JupyterLab application directory is C:\Users\e104249\AppData\Local\Continuum\anaconda3\share\jupyter\lab
[W 09:50:26.063 NotebookApp] Error loading server extension jupyterlab_code_formatter
Traceback (most recent call last):
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\notebook\notebookapp.py", line 1481, in init_server_extensions
mod = importlib.import_module(modulename)
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\importlib\__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 994, in _gcd_import
File "", line 971, in _find_and_load
File "", line 953, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'jupyterlab_code_formatter'
[W 09:50:26.067 NotebookApp] Error loading server extension jupyterlab_git
Traceback (most recent call last):
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\site-packages\notebook\notebookapp.py", line 1481, in init_server_extensions
mod = importlib.import_module(modulename)
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\lib\importlib\__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 994, in _gcd_import
File "", line 971, in _find_and_load
File "", line 953, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'jupyterlab_git'
[I 09:50:26.301 NotebookApp] Serving notebooks from local directory: C:\Users\e104249\AppData\Local\Temp\b02bbc92-1d3c-4bbc-a8e8-06ff41fba57e
[I 09:50:26.301 NotebookApp] 0 active kernels
[I 09:50:26.301 NotebookApp] The Jupyter Notebook is running at:
[I 09:50:26.301 NotebookApp] http://localhost:8888/?token=d110c55c2385b1671824e044f08ca64c051451e24ff8de9c
[I 09:50:26.301 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 09:50:26.303 NotebookApp]
Copy/paste this URL into your browser when you connect for the first time,
to login with a token:
http://localhost:8888/?token=d110c55c2385b1671824e044f08ca64c051451e24ff8de9c&token=d110c55c2385b1671824e044f08ca64c051451e24ff8de9c
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:26: getActivatedEnvironmentVariables, Class name = E, completed in 0ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:26: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Error Python Extension: 2020-05-13 09:50:27: Failed to list kernels from getJupyterKernels.py [r [Error]: Traceback (most recent call last):
File "c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\vscode_datascience_helpers\getJupyterKernels.py", line 5, in
import jupyter_client.kernelspec
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\lib\site-packages\jupyter_client\__init__.py", line 4, in
from .connect import *
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\lib\site-packages\jupyter_client\connect.py", line 21, in
import zmq
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\lib\site-packages\zmq\__init__.py", line 47, in
from zmq import backend
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\lib\site-packages\zmq\backend\__init__.py", line 40, in
reraise(*exc_info)
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\lib\site-packages\zmq\utils\sixcerpt.py", line 34, in reraise
raise value
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\lib\site-packages\zmq\backend\__init__.py", line 27, in
_ns = select_backend(first)
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\lib\site-packages\zmq\backend\select.py", line 28, in select_backend
mod = __import__(name, fromlist=public_api)
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\lib\site-packages\zmq\backend\cython\__init__.py", line 6, in
from . import (constants, error, message, context,
ImportError: DLL load failed: The specified module could not be found.
at ChildProcess. (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:589509) at Object.onceWrapper (events.js:291:20) at ChildProcess.emit (events.js:203:13) at maybeClose (internal/child_process.js:1021:16) at Process.ChildProcess._handle.onexit (internal/child_process.js:283:5)]
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:27: Parsing kernelspecs from jupyter
console.ts:137 [Extension Host] Error Python Extension: 2020-05-13 09:50:27: Failed to list kernels from getJupyterKernels.py [r [Error]: Traceback (most recent call last):
File "c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\vscode_datascience_helpers\getJupyterKernels.py", line 5, in
import jupyter_client.kernelspec
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\lib\site-packages\jupyter_client\__init__.py", line 4, in
from .connect import *
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\lib\site-packages\jupyter_client\connect.py", line 21, in
import zmq
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\lib\site-packages\zmq\__init__.py", line 47, in
from zmq import backend
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\lib\site-packages\zmq\backend\__init__.py", line 40, in
reraise(*exc_info)
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\lib\site-packages\zmq\utils\sixcerpt.py", line 34, in reraise
raise value
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\lib\site-packages\zmq\backend\__init__.py", line 27, in
_ns = select_backend(first)
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\lib\site-packages\zmq\backend\select.py", line 28, in select_backend
mod = __import__(name, fromlist=public_api)
File "C:\Users\e104249\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\lib\site-packages\zmq\backend\cython\__init__.py", line 6, in
from . import (constants, error, message, context,
ImportError: DLL load failed: The specified module could not be found.
at ChildProcess. (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:1:589509) at Object.onceWrapper (events.js:291:20) at ChildProcess.emit (events.js:203:13) at maybeClose (internal/child_process.js:1021:16) at Process.ChildProcess._handle.onexit (internal/child_process.js:283:5)]
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:27: Parsing kernelspecs from jupyter
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:27: getActivatedEnvironmentVariables, Class name = E, completed in 1ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:27: Cached data exists getEnvironmentVariables,
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:27: getActivatedEnvironmentVariables, Class name = E, completed in 5ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:27: Cached data exists getEnvironmentVariables,
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:27: > ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c "import ipykernel"
4console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:27: > ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\vscode_datascience_helpers\getServerInfo.py
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:30: getActivatedEnvironmentVariables, Class name = E, completed in 0ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.7.4-final","major":3,"minor":7,"patch":4,"prerelease":["final"],"build":[],"version":"3.7.4-final"},"sysPrefix":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","fileHash":"75942b91609d7c8e6ccfa5b2a1bb1d4fa72bc12fac82763894ac2add9ee65c954c401dbc469adcf04fffb5c7310548474fab3bca36efd1146e43c4fa2ff4deea","companyDisplayName":"Anaconda, Inc.","type":"Conda","envPath":"C:\\Users\\e104249\\AppData\\Local\\Continuum\\anaconda3\\envs\\corona_sale_exp","envName":"corona_sale_exp","displayName":"Python 3.7.4 64-bit ('corona_sale_exp': conda)"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:30: Cached data exists getEnvironmentVariables,
2console.ts:137 [Extension Host] Info Python Extension: 2020-05-13 09:50:30: > ~\AppData\Local\Continuum\anaconda3\envs\corona_sale_exp\python.exe c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\pythonFiles\pyvsc-run-isolated.py -c "import ipykernel"
2console.ts:137 [Extension Host] Warn Python Extension: 2020-05-13 09:50:33: Failed to parse JSON when getting server info out from getServerInfo.py [SyntaxError: Unexpected token _ in JSON at position 0 at JSON.parse () at w.getRunningJupyterServers (c:\Users\e104249\.vscode\extensions\ms-python.python-2020.5.78807\out\client\extension.js:92:366690) at processTicksAndRejections (internal/process/task_queues.js:85:5)]
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:402
_invokeHandler @ rpcProtocol.ts:387
_receiveRequest @ rpcProtocol.ts:303
_receiveOneMessage @ rpcProtocol.ts:230
(anonymous) @ rpcProtocol.ts:105
fire @ event.ts:587
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:587
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:203
addChunk @ _stream_readable.js:295
readableAddChunk @ _stream_readable.js:276
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
notificationsAlerts.ts:40 Data Science library ipykernel is not installed in interpreter Python 3.7.4 64-bit ('corona_sale_exp': conda). Install?
onDidChangeNotification @ notificationsAlerts.ts:40
(anonymous) @ notificationsAlerts.ts:26
fire @ event.ts:587
addNotification @ notifications.ts:207
notify @ notificationService.ts:106
(anonymous) @ mainThreadMessageService.ts:83
_showMessage @ mainThreadMessageService.ts:44
$showMessage @ mainThreadMessageService.ts:38
_doInvokeHandler @ rpcProtocol.ts:402
_invokeHandler @ rpcProtocol.ts:387
_receiveRequest @ rpcProtocol.ts:303
_receiveOneMessage @ rpcProtocol.ts:230
(anonymous) @ rpcProtocol.ts:105
fire @ event.ts:587
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:587
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:203
addChunk @ _stream_readable.js:295
readableAddChunk @ _stream_readable.js:276
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
event.ts:19 [Violation] Added non-passive event listener to a scroll-blocking 'touchstart' event. Consider marking event handler as 'passive' to make the page more responsive. See https://www.chromestatus.com/feature/5745543795965952
onFirstListenerAdd @ event.ts:19
_event._event @ event.ts:516
(anonymous) @ event.ts:56
onFirstListenerAdd @ event.ts:116
_event._event @ event.ts:516
N @ listWidget.ts:546
createMouseController @ listWidget.ts:1265
e @ listWidget.ts:1251
e @ listService.ts:269
_createInstance @ instantiationService.ts:111
createInstance @ instantiationService.ts:76
createNotificationsList @ notificationsList.ts:80
show @ notificationsList.ts:54
addToast @ notificationsToasts.ts:183
onDidChangeNotification @ notificationsToasts.ts:125
(anonymous) @ notificationsToasts.ts:98
fire @ event.ts:587
addNotification @ notifications.ts:207
notify @ notificationService.ts:106
(anonymous) @ mainThreadMessageService.ts:83
_showMessage @ mainThreadMessageService.ts:44
$showMessage @ mainThreadMessageService.ts:38
_doInvokeHandler @ rpcProtocol.ts:402
_invokeHandler @ rpcProtocol.ts:387
_receiveRequest @ rpcProtocol.ts:303
_receiveOneMessage @ rpcProtocol.ts:230
(anonymous) @ rpcProtocol.ts:105
fire @ event.ts:587
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:587
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:203
addChunk @ _stream_readable.js:295
readableAddChunk @ _stream_readable.js:276
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
Show 10 more frames