after updating conda today on a minimal centos image the conda installation was broken. Python complained about problems with md5. add xxd via vim as a dep for ubuntu? · Issue #685 - GitHub
When you run xxd and see:
# For newer Fedora/RHEL 8+ versions sudo dnf install xxd xxd command not found
To make the change permanent, add the line to your shell configuration file (e.g., ~/.bashrc or ~/.zshrc ). after updating conda today on a minimal centos
Red Hat-based systems usually include it in the standard vim-common or vim-enhanced packages. · Issue #685 - GitHub When you run
In many Linux ecosystems, xxd is not a separate project; it is shipped as part of the vim-common or vim package. If you use nano or a minimal text editor, xxd won't be present.
: Typically available in bsdmainutils (often pre-installed). hexdump -C filename Use code with caution. od (Octal Dump) : POSIX standard. od -t x1z filename Use code with caution.