if i use conda install in an environment, does it install within the environment code example
Example 1: anaconda create environment python version
conda create -n myenv python=3.6
Example 2: conda create environment without packages
conda create --name myenv python=3.8 --no-default-packages