Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

I'm new to MAC (OSX version is High Sierra 10.13.3). I installed python 3.6.5 with the installer from python.org and I tried doing it with brew too by running brew install python . Now, I'm trying to run sudo npm install in a Angular project and I get the following errors:

gyp verb check python checking for Python executable "/path/to/python3/python" in the PATH
gyp verb `which` failed Error: not found: /path/to/python3/python
gyp ERR! stack Error: Can't find Python executable "/path/to/python3/python", you can set the PYTHON env variable.

I have tried all the answers in here :

python location on mac osx

Can't find Python executable "python"

Inside of my projects folder I do the following:

when I type 'which python' I get:

/usr/local/opt/python/libexec/bin/python

When I type 'which python3.6.5' I get:

/Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6
                First, you've installed at least two extra Pythons on top of the one Apple preinstalled, instead of just one. That will just make things even more confusing. Uninstall one of them.
– abarnert
                Jun 18, 2018 at 20:41
                Second, have you actually put the literal string /path/to/python3 or /path/to/python3/python somewhere? If so, you were supposed to substitute that with the actual path to python3, like /Library/Frameworks/Python.framework/Versions/3.6/bin/ or /Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6.
– abarnert
                Jun 18, 2018 at 20:44
                @abarnert Correct. I install the lastest version because I know MAC comes with a default one but when I was running npm install it has saying that I need python. With that being said, I see a executable in the launcer in the mac, but when I drag it to the trash can, it doesn't get uninstall. any safe way to do so?
– Patricio Vargas
                Jun 18, 2018 at 20:44
                First, you cannot uninstall the Python that came with macOS, and you do not want to. You can uninstall either of the two Python 3.6 versions, however. The simplest way is brew unlink python, which should remove the Homebrew one, leaving the python.org one.
– abarnert
                Jun 18, 2018 at 20:47
                Meanwhile, if you're using gyp, AFAIK that's a dead project which doesn't support Python 3 and never will, which means installing Python 3.6 isn't going to help. Either use Apple's Python 2.7, or install another Python 2.7 instead. IIRC, for the former, it should be as simple as npm install --python=python2.7. But if you search for help on that, instead of help on Python installations that you didn't actually need to do, you'll probably find better information.
– abarnert
                Jun 18, 2018 at 20:50

For me it was all happening because of nodejs version.

Node version 16+ does not support "node-sass": "^4.14.1", so I have to install nvm and downgrade the nodesjs in macbook as follows

  • Before installing nvm, run this in terminal: touch ~/.bash_profile

  • After, run this in terminal: curl -o-
    https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh |

  • Important... - DO NOT forget to Restart your terminal OR use command source ~/.nvm/nvm.sh (this will refresh the available commands in
    your system path).

  • In the terminal, use command nvm --version and you should see the
    version

  • bash nvm install 14.17.0

    Thanks for contributing an answer to Stack Overflow!

    • Please be sure to answer the question. Provide details and share your research!

    But avoid

    • Asking for help, clarification, or responding to other answers.
    • Making statements based on opinion; back them up with references or personal experience.

    To learn more, see our tips on writing great answers.

  •