Я хочу убедиться, что обе команды устанавливают пакеты в одну папку. Как проверить, что
'pip install' 'conda install'
'pip install'
'conda install'
оба помещают новые пакеты, библиотеки в один и тот же каталог?
conda install -p [PATH] #will allow you to override the default path it is installed in
pip show [package name] #will show you where a package is installed
https://docs.conda.io/projects/conda/en/latest/commands/install.html
https://pip.pypa.io/en/stable/reference/pip_install/