version management

All posts tagged version management by Linux Bash
  • Posted on
    Featured Image
    In the world of Linux, package management is a core aspect of system administration and maintenance. While upgrading packages is a common task aimed at ensuring security and getting the latest features, there are times when you might need to downgrade a package. This might be necessary if an update introduces a bug, breaks compatibility, or negatively affects performance. Below, I'll guide you through downgrading packages using three popular package managers: APT (for Debian-based systems), DNF (for Fedora and other RPM-based systems), and Zypper (for openSUSE). APT (Advanced Package Tool) is the go-to for managing packages on Debian-based systems like Ubuntu.
  • Posted on
    Featured Image
    For developers working with Python, managing multiple versions can be essential, yet challenging. Whether you're juggling with compatibility issues or testing across different versions, having a reliable version management tool is indispensable. Pyenv is a popular solution among Pythonists for its versatility in handling various Python versions seamlessly. In this blog post, we'll cover what pyenv is, how to install it, and how to use it effectively across different Linux distributions using different package managers. Pyenv is a simple, powerful tool that allows you to easily switch between multiple versions of Python. It lets you set the global Python version on a per-user basis, and also supports per-project Python versions.
  • Posted on
    Featured Image
    Node.js has become an indispensable tool for developers, particularly for those working in web development. Managing multiple versions of Node.js, however, can be a cumbersome task, especially when transitioning between different projects that may require different versions. This is where Node Version Manager (NVM) comes into play. NVM allows you to install multiple versions of Node.js and switch between them with ease. In this blog post, we'll explore what NVM is, why you should use it, and provide detailed installation instructions across various Linux distributions using different package managers like apt, dnf, and zypper. NVM stands for Node Version Manager. It's a POSIX-compliant bash script to manage multiple active Node.js versions.