Is there a pdm equivalent to pip's --no-cache-dir
flag?
#2476
Unanswered
ryansheabla
asked this question in
Q&A
Replies: 1 comment 2 replies
-
exact same problem here... Homebrew upgraded mysql for me while installing something else and now mysqlclient is broken have deleted my virtualenv and reinstalled but I the same errors afterwards, feels like I probably need to force pip to recompile or whatever, not clear how to do this in a pdm project though |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Running into some issues with mysqlclient, which can be easily fixed by using:
pip install --no-cache-dir mysqlclient
Is there a way to do this in pdm?
Beta Was this translation helpful? Give feedback.
All reactions