Macos 磁盘清理记录

 

日志文件

neat download manager:

/Users/zorch/Library/Application Support/com.NeatDownloadManager
find . -type d -exec rm -f {} \;

在 Windows 中, 位于

  C:\user\xx\AppData\Roaming\NeatDM\...

缓存文件

# brew cache
brew cleanup --prune 0

# python cache etc.
conda clean --all
pip cache purge
  $ pip cache --help
  
  Usage:
    pip cache dir
    pip cache info
    pip cache list [<pattern>] [--format=[human, abspath]]
    pip cache remove <pattern>
    pip cache purge
  
  
  Description:
    Inspect and manage pip's wheel cache.
  
    Subcommands:
  
    - dir: Show the cache directory.
    - info: Show information about the cache.
    - list: List filenames of packages stored in the cache.
    - remove: Remove one or more package from the cache.
    - purge: Remove all items from the cache.