When I run conda search -c conda-forge nodejs
, I get:
# Name Version Build Channel
...
nodejs 14.2.0 h2c41780_1 conda-forge
nodejs 14.2.0 h38d8c5a_0 conda-forge
nodejs 14.3.0 h2c41780_0 conda-forge
nodejs 14.4.0 h2c41780_0 conda-forge
But when I try to install it using conda install -c conda-forge nodejs
it tries to install 6.13.1. Doing conda install -c conda-forge nodejs==14.4.0
also does not work. It keeps trying to "solve" the environment. Any suggestions on how to fix this?
conda create -n new_env_name nodejs
. If that's not an option for you consider raising this as an issue here: github.com/conda-forge/nodejs-feedstock/issues – Pickelicu
is but is there any workaround? What about installing a slightly older version? I basically need nodejs >= 10.0. – Athodydconda install "nodejs>=10.0"
. Maybe it also works for you? – Pickelconda install nodejs -c conda-forge --repodata-fn=repodata.json
will install 13.x. All credits go to Wolf Vollprecht :-) – Pickelconda install "nodejs>=10.0"
solved my problem. – Manzano