I made venv using conda. it’s my first time
conda create -n filename python=3.7
but there is not activate file in bin folder(in vscode interpreter, venv exists)
help me..!!
>Solution :
Since you created the environment with conda named filename, you need conda to activate it:
conda activate filename
# to deactivate
conda deactivate
If you run
conda env list
You would see the path to your environments. e.g.
# output
base * C:\Users\<UserName>\AppData\Local\Continuum\anaconda3
envmnt C:\Users\<UserName>\AppData\Local\Continuum\anaconda3\envs\filename
If you really want to directly use source activate You can find those scripts there.
Note: the * in front of environment name indicates which environment is currently active.

