Questions tagged [package-managers]

Software that allows administrators (and in some cases also users) to control the installation and upgrade process of packages on their systems.

Package management systems exist for most operating systems. Programs (like interpreters for some languages, scientific computing systems, etc.) may also have their own package manager for handling extensions, scripts or plugins.

The chief goal is to provide a means for software to recursively specify dependancies, allowing a software package's dependant libraries to be automatically installed.

999 questions
0
votes
1 answer

I want to create a .deb package for our software

I am trying to make a .deb package for our software. My basic requirement from the package: After the installation of the package, it should create a desktop shortcut which is linked to the start up script for the software. It should install the…
Tejas Shah
  • 55
  • 9
0
votes
2 answers

Hiding an icon programmatically unity c#

I've been trying to get an app icon to be hidden using c# in unity. I tried implementing the android code below: PackageManager p = getPackageManager(); ComponentName componentName = new ComponentName(this,com.apps.MainActivity.class); //…
Shreenath M
  • 143
  • 1
  • 2
  • 8
0
votes
1 answer

Determine what scripts are inside a combined js file

I'm trying to build an ajax script loader, but I'm running into the issue where I'm sending pieces of my combined file over twice (ie. jquery, bunched up with other scripts, is getting sent over twice because it's required by some (ajax) requested…
Matt
  • 22,224
  • 25
  • 80
  • 116
0
votes
2 answers

Error when trying to install Bower package in Visual Studio

I'm doing a Pluralsight course(https://www.pluralsight.com/courses/asp-dot-net-core-understanding) and in the first example the teacher tells to install the package "startboostrap-sb-admin-2", that's here:…
gabsferreira
  • 3,089
  • 7
  • 37
  • 61
0
votes
0 answers

Not finding PowerShell packages in Nexus OSS when the RequriedModules Attribute has a value in the Module Manifest

I have been working on setting up a DevOps stack (source control, ci, package management) for our powershell modules. I was playing with nexus OSS as a PM solution. I am able to use the Publish-Module cmdlet to add modules to the nuget feed, as…
tomohulk
  • 592
  • 2
  • 9
  • 22
0
votes
1 answer

Cannot access package manager

I have weka 3.7, 3.8, and 3.9 installed on my Windows 10 computer. I cannot access the package manager in 3.8 or 3.9. Here is the error message I get when I try (clicking the Tools menu and selecting Package…
Jen
  • 131
  • 1
  • 4
0
votes
2 answers

Arch Linux Pacman monitor

Reminder: Arch Linux uses pacman not apt-get So I had an idea that I wanted to be able to leave my room and still see the progress of a download from my phone. I have looked for preexisting programs but have found none, so I decided to write a…
0
votes
1 answer

Remove a package from within DrRacket

In the command line, I can add and remove packages with raco pkg. In DrRacket, however, package management is handled through either File -> Install Package (if you are only installing packages), or File -> Package Manager (if you want to install a…
Leif Andersen
  • 21,580
  • 20
  • 67
  • 100
0
votes
4 answers

How do I check node_modules directory for unnecessary packages?

My node_modules has packages that are not listed in my package.json's dependencies, so I'm guessing that those packages are dependencies of my dependencies. How would I be able to check this? I want to make sure that there aren't any unnecessary…
stackjlei
  • 9,485
  • 18
  • 65
  • 113
0
votes
1 answer

Bower install error eacces permission denied

Hi I searched and tried all possible answers given in different sections but it still gives an error. you donot have access of this file ../././bower-github.json Attached the screen shot
s_k_t
  • 689
  • 1
  • 15
  • 36
0
votes
1 answer

Packaging Php Composer inside of Nuget

Does the following make sense: sticking a Composer package (post composer install) inside of a Nuget package for deployment purposes. Or an NPM install result inside of a Nuget package? In the context of deployment, would it not be best to deploy…
Kyle Wiering
  • 444
  • 5
  • 15
0
votes
2 answers

Yum and RPM show that the number of installed packages is different

[root@study ~]# rpm -qa | wc -l 777 [root@study ~]# yum list installed | wc -l 1054 i want to know why different,shoud i get correct number of installed packages?
liang lei
  • 13
  • 6
0
votes
0 answers

Gitlab gems installation issue

on installation of Gitlab everything is fine but while installing gems , it shows an error :/home/git/gitlab# sudo gem install charlock_holmes --version '0.6.9.4' Building native extensions. This could take a while... Successfully…
Anil kashyap
  • 47
  • 1
  • 1
  • 8
0
votes
1 answer

Error with installing postgresql-9.5-postgis-2.2 on Debian 8.5 jessie

I have PostgreSQL 9.5 installed and working on Debian 8.5 jessie. The following packages have unmet dependencies: postgresql-9.5-postgis-2.2 : Depends: libgdal1h (>= 1.9.0) but it is not going to be installed …
kret
  • 158
  • 9
0
votes
1 answer

I can't properly uninstall Sublime Text on Debian

This is probably a pretty simple problem to fix, but I'm quite new to Linux and certainly Debian so I'm quite lost here. Put quite simply I am trying to remove two different versions of sublime text from a machine running Debian, so I can reinstall…