I am using notebook in VScode and I am working with tensorflow==1.15.5 but in my system version is 2.3.2.
So I created virtual environment with python 3.7 and on system activated python is 3.8 and installed version 1.15.5. Now I want to activate this virtual env in notebook too.
I tried selecting the interpreter (Ctrl + Shift + P) and selected the created environment. But this is not working.
I tried
import tensorflow as tf
print(tf.__version__)
this is still showing 2.3.2
and even
!python --version
is showing 3.8.0
even i tried this article but this is not working too. I am not using conda, any help on this
