具有已激活的env和文件env.yaml
channels:
- conda-forge
dependencies:
- nodejs
不可能通过以下方式安装nodejs
conda install -f env.yaml
我收到一个错误
PackagesNotFoundError: The following packages are not available from current channels
但是有可能
conda install -c conda-forge nodejs
为什么?