Last active
November 16, 2019 16:49
-
-
Save shubhamagarwal92/7325b5feac45e959645ac41ceddb962a to your computer and use it in GitHub Desktop.
Ignore cache when installing package
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pip install --no-cache-dir <pkg> | |
# Currently conda doesnt allow ignoring cache | |
# https://github.com/conda/conda/issues/7741 | |
conda clean --all --force-pkgs-dirs | |
# https://stackoverflow.com/a/57994079/3776827 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment