I have installed TensorFlow with Anaconda with following steps (see here: https://docs.anaconda.com/anaconda/user-guide/tasks/tensorflow/)
conda create -n tf tensorflow
conda activate tf
Now I am able to open a Jupyter Notebook in Visual Code Studio, choose the right Python Kernel from the tf virtual environment and import tensorflow. However, when I try to import other libraries, for example pandas, which I have installed in other Python folders, it does not work (No module named 'pandas'). Do I need to install everything again in this virtual environment? I am probably missing the half of it... I would much appreciate any help. Regards!