It’s possible your SSD may be a bit cluttered. Checking the size of installed package will help you understand which packages are taking up the most space. From here, you can make choices about which packages “spark joy,” and proceed to KonMari appropriately.
To find the path to installed packages on your Linux machine, type:
pip3 show "some_package" | grep "Location:"
This will return path/to/all/packages. Something like: /Users/yourname/opt/anaconda3/lib/python3.7/site-packages
Insert that file path into the command below:
du -h path/to/all/packages
where du
reports file system disk space usage.
This code will output the size of each package. The final line of output will contain the size of all packages.