Fix: Pip error when compiling Basilisk #457
JulianHammerl
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I got an error when compiling Basilisk saying that "There was an error checking the latest version of pip". I fixed this by clearing pip's update cache using the following command:
Linux
rm -r ~/.cache/pip/selfcheck/
OSX
rm -r ~/Library/Caches/pip/selfcheck/
Windows
rm -r $env:LOCALAPPDATA\pip\cache\selfcheck\
More information can be found here.
Beta Was this translation helpful? Give feedback.
All reactions