I have a conda environment file that I use to create a new environment:
conda env create -f environment.yml
This installs all of my conda and pip packages. One of my pip packages, turicreate
, installs mxnet
as a dependency. This is a problem because the correct package for my application is mxnet-cu80
, and the existence of mxnet
breaks the application. I can uninstall mxnet
manually, but I would rather force the above command to only install the listed packages (without dependencies). Is this possible?
The --no-deps
flag only applies to conda create
, not conda env create
.