I'm using visual studio for macOS Big Sur. Trying to work with virtual environments for the first time. So I've created one virtual environment using the following command:
python3 -m venv <name>
Then I did activate it:
source meuvirtual1/bin/activate
And I've installed some data science packages through terminal. Everything works fine, however, when I try to use this virtual environment at Visual Studio, it can't detect.
Tried to select "enter interpreter path" located the folder, clicked on python3 icon:
But it does nothing. It still can't detect the virtual environment. The virtual environment is installed at:
/Users/rodrigolira/meuvirtual1/bin/python3
Can someone please help me? I've been stuck at this for hours.