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

angular-fullstack permission denied rename jquery

I run sudo yo angular-fullstack squad and I get following error message on Mac. You can see my Bower and Node version in the screenshot. Do you have an idea how I can solve this? Best regards, Marcel
molerat
  • 946
  • 4
  • 15
  • 43
0
votes
1 answer

Ansible - correct way for privilege elevation

I am writing a playbook in order to install a package from portage: --- - hosts: '1.2.3.4' sudo: True become_user: admin_x - tasks: - name: "install nspr" portage: package=dev-libs/nspr state=present This fails, telling me I do not…
wishi
  • 7,188
  • 17
  • 64
  • 103
0
votes
2 answers

Is it possible to open application using package name on onReceive()?

I'm having a requirement where i will registering few alarm manager to perform specific task and on onReceive() i'm doing the specific task. As of now this is working only when the task is in background that is not killed. I'm planning to open a…
coders
  • 719
  • 1
  • 11
  • 35
0
votes
2 answers

How do I use Bower to manage my packages with Bluemix?

I want to use Bower to install the client dependencies for my Bluemix project. It does not work if I simply run bower install. I also tried to run it as a script by adding it to my package.json file as "postinstall": "bower install" and then…
ralphearle
  • 1,696
  • 13
  • 18
0
votes
1 answer

undoing damage from wrong /etc/apt/sources.list

I had the wrong ubuntu version listed in /etc/apt/sources.list some (it listed precise instead of trusty) which I only discovered after a full day of workarounds for packages that wouldn't install automatically. Now everything is back to speed…
jeremy_rutman
  • 3,552
  • 4
  • 28
  • 47
0
votes
0 answers

Cygwin install from cmd find a package for liblapack0

After seeing the method of this post, I was trying to install liblapack0 in cygwin from the command line: setup-x86.exe ^ --quiet-mode ^ --packages ^ liblapack0 But it seems it does not work. While I can see liblapack0 in the GUI of cygwin. Even,…
ar2015
  • 5,558
  • 8
  • 53
  • 110
0
votes
3 answers

Is there a way to make the VS Package Manager commands available on Powershell Console?

Is there a way to make the VS Package Manager commands available on Powershell Console? I looked over this link but I was unable to understand the NuGet philosophy. I know that I can access it in Visual Studio but, let me explain my approach and…
Adrian
  • 1,006
  • 2
  • 9
  • 20
0
votes
1 answer

Entity Framework code first - update database can't find .mdf in project

I am creating a small app with EF code first and I want to call the update database command from the package manager console and target the database in my app.config which is a local .mdf. I have this connection string in my…
nick gowdy
  • 6,191
  • 25
  • 88
  • 157
0
votes
1 answer

List of just installed apps

I need to store all the installed apps icons in an array, and names in another array, so I´ve this code: List apps = getPackageManager().getInstalledPackages(0); int numberApps = apps.size(); String[] appsNames = new…
Javierd98
  • 708
  • 9
  • 27
0
votes
2 answers

NPM packages not nesting in Visual Studio with latest Node

After starting a standard ASP.Net 5 Web Application, and adding npm packages, VS2015 has stopped nesting them. Even with one simple package such as 'del', I see - I'm sure it should be showing just the primary package, with its dependencies nested…
Party Ark
  • 1,061
  • 9
  • 20
0
votes
0 answers

Using NPM, Gulp, Grunt, Bower etc with Visual Studio 2013

I've been trying for the past couple of weeks to get my head around the use of the new front end tool chain for web development. In particular using NPM, Bower and primarily Gulp but initially Grunt, to manage front end packages and integrate with…
Pheonyx
  • 851
  • 6
  • 15
0
votes
1 answer

Get affected package and version from a CVE?

I want to run a test for some servers to see if they are vulnerable to a bunch of vulnerabilities in CVE database (cve.mitre.org). I have access to the servers so I can know the version numbers of all the installed packages. I am newbie in using CVE…
0
votes
1 answer

Unable to import package (pytables) in iPython/Spyder in Anaconda 2.4 (python 3.5) even though it is installed

Have jut installed Anaconda 2.4 (Python 3.5) on my 64-bit windows PC. I have updated the packages with conda update conda conda update --all I am trying to import Pytables but it is throwing follwoing error import pytables Traceback (most recent…
poPYtheSailor
  • 146
  • 3
  • 18
0
votes
0 answers

Sublime Text 2 Package Control installed but is deleted upon Restart

I have copied Package Control.sublime-package in the directory ~/Library/Application\ Support/Sublime\ Text\ 2/Installed\ Packages/ as per instructions in https://packagecontrol.io/installation#st2 However, after restarting Sublime, the file gets…
Dmitri Zaitsev
  • 13,548
  • 11
  • 76
  • 110
0
votes
1 answer

Dependencies between projects with Haskell Stack build tool -- best workflow?

I am just beginning a relatively large Haskell project using the stack package manager and build tool, and I am trying to figure out the best way to split it up into several stack projects with dependencies between them. Essentially, while I believe…