I am working on machine learning project where dependency issue are a big headache. Specifically, many package could only be installed by pip, not conda. so i need a way to install them to a environment, seperated from other environment.
First, i "conda create --name myenv", this way i create a env. Then, "conda install xxx" will simply install it to your current env, however, some of them are available by "pip install". So instead i try "conda install pip" and then "pip install xxx"
I wonder will this help me install xxx to my current env so that other envs can not see this?
if not, how could i do that?