System
I have a project which requires node@10 to run. I used https://brew.sh to install node@10.
I used the below command to install node@10
brew install --build-from-source node@10
It was not able to install and i got the following error.
./configure: line 3: exec: python: not found
I installed python using brew.
brew install python
The above command installed python3, so i created alias for python
alias python=python3
So, python is working. I again tried brew install --build-from-source node@10
and still getting
which python -> python: aliased to python3
– Wharf