The Python
Skyfield
library replaces the
deprecated PyEphem.
Skyfield brings functionality for Python that the NAIF SPICE package has for C, FORTRAN, IDL, and MATLAB.
Specifically, performing high-precision astronomical calculations.
AstroPy
has more comprehensive astronomical functions.
Find the directories consuming the most hard drive space.
Whole hard drive big file search:
du -hd1 / 2>/dev/null | sort -rh | head
Home directory big file search:
du -hd1 ~ 2>/dev/null | sort -rh | head
“ncdu” is a widely-available graphical Ncurses based program showing the largest files.
NCDU is more user-friendly than the plain text method above.
NCDU allows deleting files interactively.
When using on WSL, specify the desired drive like (for C: in this example):
Generally the latest compilers are available from Homebrew for Linux and macOS.
Instead of putting Homebrew environment variables into ~/.profile, consider putting them into ~/brew.sh activate them when needed, instead of constantly being active.
Either choice is fine of course.
Some older Prolific-based USB interfaces–such as used to program two-way radios–can fail to be recognized on Windows upon first plugin.
Looking in Windows Device Manager, the device shows up with a yellow caution sign, and an error message like:
This device cannot start. (Code 10) {Not Enough Quota}
Not enough virtual memory or paging file quota is available to complete the specified operation.
Usually the fix is to install an older version of the Prolific driver that is less sensitive to Prolific chip version.
We have experienced that the Prolific 3.6 - 3.8 drivers are subject to this issue.
We can’t vouch for the older Prolific 3.2 drivers available but they do work.
Many PyPI packages can be installed with pip as usual.
On Windows, the appropriate version of Microsoft Visual Studio may be required to compile packages from source.
pypy3 -m pip install numpy
Some packages don’t work yet easily, particularly on Windows where the compilers and prerequisite libraries may need to be manually built.