Reputation: 4561
Using Python I am trying to install a library called yappi through easy_install. However I am getting this error below on Windows 7 Command Shell:
I explored alternative installations. I tried previously 'pip install yappi' but this didn't work due to a separate error (can't build wheel) which is a separate question.
Upvotes: 0
Views: 556
Reputation: 2088
Try downloading the appropriate wheel from here.
Then use pip install [package]
.
Upvotes: 1