How to use anaconda or jupyter-notebook in VSCode

Jiun Da Lin
2 min readAug 4, 2020

--

Install anaconda and create virsual environment

Use anaconda in vscode

  1. Install extension of python in vscode first

2. Add the anaconda folders path to environment path
it may like this:

or like this:

3. Press Ctrl+Shift+P and type interpreter then select it

4. Choose the virtual environment you established before

5. Click Run and Debug and you can see that the result will show in terminal

6. Install kite extention(Optional)
note: kite can make you save lot of time to find a function

7. Install anaconda extention(Optional)

Use jupyter notebook in VSCode

  1. Press Ctrl+Shift+P and select create new blank jupyter notebook

--

--