-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
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
Wheels failed to build while pip installing #12
Comments
Ah, I was able to figure it out by directly editing my wheels folder, apologies for wasting your time! |
Hi @rohanjha123, thank you for opening this issue! Could you explain in more detail how you fixed it? I don't have access to Mac and would like to add your solution to README for Mac users and tag you as a co-author in the commit. What do you think? 🙂 |
Thanks for reaching out @dimitryzub! The issue comes from the following line: |
@rohanjha123 Thank you for your thoughts 🙂 Could you tell if you used virtual environment when installing package for the first time? In other words, did you installed it globally or locally to virtual env? I guess the CLI way of solving your issue could be by using: sudo chmod -R a+w /Users/rohanjha/Library/Caches/pip/wheels which will may grant write permission to all users for the specified directory and its contents. So CLI commands could be like so: $ python3.11 -m venv env # or just python3
$ source env/bin/activate
$ pip install scrape-google-scholar-py
# if error above:
$ sudo chmod -R a+w /Users/rohanjha/Library/Caches/pip/wheels
$ pip install scrape-google-scholar-py Just wanted to share a few thoughts on that. Not really sure what might caused that issue. |
I installed them globally! Thanks for the suggestions |
Hi,
I'm using macOS Big Sur, python 3.11.1. Whenever I try to
pip install scrape-google-scholar-py
, all the requirements are satisfied but the wheels fail to build. I'm not sure what's happening, I've attached the error message below. I'd really appreciate any help, thanks!The text was updated successfully, but these errors were encountered: