Nodejs, Anaconda And Setting Nodepath (conda Not Updating Paths)
I've installed NodeJS in Anaconda with conda install -c anaconda nodejs but I cannot install anything globally. If I run npm install -g I get a permissions e
The problem wasn't specific to nodejs but also affecting python. Turns out although the environment was loaded I needed to run
conda activate base
as specified here
Seems to be related to this bug:
https://github.com/conda/conda/issues/9392
Post a Comment for "Nodejs, Anaconda And Setting Nodepath (conda Not Updating Paths)"