I'm trying to setup Visual Studio Code for python development
to begin with, I've installed
- Anaconda Python
- Visual Studio Code
and in a new file I have the following code
import numpy as np
import pandas as pd
from pandas import Series, DataFrame
upon hitting Ctrl+Shift+B I get the following error
import numpy as np
ImportError: No module named 'numpy'
Also, is there python interactive window in VS Code? How to open it.