We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
macOS install can trip up on lightgbm install section. Folks failing to install should try the following in this order:
pip3 install Cmake #requires brew brew install libomp pip3 install lightgbm #then install stringsfter pip3 install stringsifter
The text was updated successfully, but these errors were encountered:
If you still have issues installing this on macOS, it might be that it's installing under the wrong version of python. You can check this like so:
% cat `which pip3` #!/usr/local/opt/[email protected]/bin/python3.11 [snip] % which python3 /usr/bin/python3
To get around this, you can run the pip statements like this instead:
python3 -m pip install Cmake #requires brew brew install libomp python3 -m pip install lightgbm #then install stringsfter python3 -m pip install stringsifter
Sorry, something went wrong.
No branches or pull requests
macOS install can trip up on lightgbm install section. Folks failing to install should try the following in this order:
The text was updated successfully, but these errors were encountered: