Ngozi Oparangozihannahopara.hashnode.dev·Jan 12, 2024How to Install Chocolatey on Windows for Package ManagementManually installing software off the internet can get tasking and complicated. It can get even more difficult if you are trying to install DevOps tools like Maven, Git, or Python. Managing software installations often requires specific dependencies. ...10 likes·48 readsPackage Managers
Pratik MforOmniGuruomniguru.net·Nov 12, 20235 Simple Fixes for the "E: Unable to Locate Package" Error on UbuntuHave you ever tried installing software on Ubuntu only to be confronted by the "E: Unable to locate package" error message? This common error indicates that the package you are trying to install cannot be located in the configured software repositori...288 readsLinuxLinux
Pratik MforOmniGuruomniguru.net·Nov 3, 2023Top 5 Linux Package Managers You Should KnowOne of the best features of Linux is its powerful package management systems. Package managers allow you to easily install, update, and remove applications on your Linux distribution. Instead of having to compile applications from the source or hunt ...LinuxLinux
Pratik MforOmniGuruomniguru.net·Oct 22, 2023How to Delete Installed Packages on Ubuntu: Easy TechniquesRemoving installed packages that are no longer needed is an essential part of system maintenance on Ubuntu Linux. Keeping your system free of unnecessary packages helps optimize storage space and reduces security vulnerabilities. In this article, we ...LinuxLinux
Pratik MforOmniGuruomniguru.net·Oct 17, 2023Easy Ways to Check Linux Packages Installed on Your SystemAs a Linux user, it's essential to know which packages are installed on your system. This knowledge can help you manage your system effectively, identify unnecessary packages for removal, and make migrating to a new system more efficient. This guide ...49 readsLinuxLinux
Sandhya Kumaritechwithsandhya.hashnode.dev·Mar 6, 2023DevOps90DaysChallengeHi 👋there, Now we are on the Day 7 task Understanding package manager and systemctl . Checkout the below link for Day 7 task: https://github.com/LondheShubham153/90DaysOfDevOps/blob/master/2023/day07/tasks.md 1.)What Package and package manager in L...91 readspackage
Arif Shaikharifshaikh.hashnode.dev·Jan 13, 2023Elucidating the concept of the package manager 📦What is a Package Manager? A package manager is a CLI(Command Line Interface) software or a tool that is built to automate the installation of your programming environment and create the programming environment for you on your computer without having...3 likes·28 readsnpm
Anoop Jadhavblog.anoopjadhav.in·Sep 20, 2022[Part -2 ] Build & Publish React component as NPM package using ParcelIn the previous article we used typescript complier to build the react component. In this one we will see how to build it using parcel. Parcel is a zero configuration build tool. checkout their amazing website here. It is pretty easy to setup a proje...299 readsparcel
Erdal TAŞKESENwww.erdaltaskesen.com·Mar 29, 2018How to remove all packages installed by pipSometimes you want to get rid of all python packages. There is a quick and easy way to do this. The command below will also remove the packages installed via VCS. pip freeze | grep -v "^-e" | xargs pip uninstall -y You may also use the command below...56 readsPython