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
23
votes
2 answers

How can I whitelist a single file in a directory in .npmignore?

I'm trying to make npm download only a single file in a directory on npm install of the package. The directory looks like: +- dist/ +- 1.0.0/ +- 1.0.1/ +- ...lots of other dirs... +- file.js I want npm to ignore everything but file.js…
m90
  • 11,434
  • 13
  • 62
  • 112
23
votes
3 answers

Visual Studio 2012 Package Manager Console error

When trying to install anything with the Package Manager Console, I get this error: Install-Package : The schema version of 'Microsoft.Bcl' is incompatible with version 2.0.30625.9003 of NuGet. Please upgrade NuGet to the latest version from…
user3272686
  • 853
  • 2
  • 11
  • 23
23
votes
2 answers

Jam vs Bower, what's the difference?

There are two package managers for client-side Javascript, but how do they compare? Could someone explain which one excels at what? Jam Bower
Evan Carroll
  • 78,363
  • 46
  • 261
  • 468
22
votes
9 answers

Heroku build failing due to Yarn and npm lockfile conflict

I'm trying to deploy a React Web app on Heroku using the Heroku CLI. However when I run, git push heroku master from my project folder it throws an error as: Counting objects: 213, done. Delta compression using up to 4 threads. Compressing…
SeaWarrior404
  • 3,811
  • 14
  • 43
  • 65
22
votes
4 answers

Is there a way to sync Sublime Text settings across multiple computers?

I have two computers, a desktop and a laptop. Now I have set up my ENV to sync with the help of a dropbox link. Is there a way to sync my Sublime Text 3 settings between these two computers including all my plugins, preference files, etc... and, if…
22
votes
1 answer

What is the difference between installing an app via homebrew or installing it "normal"?

say for example you want to install Inkscape. You can install it either by downloading the app from the inkscape website or by downloading it via Homebrew. What are the pros and cons of both approaches? And if I install it via Homebrew, will…
user2426316
  • 7,131
  • 20
  • 52
  • 83
22
votes
3 answers

Package Manager Console not found

Package Manager Console not found in Tools menu?? I am using Visual Studio 2010. I need to run a command in it Install-Package Facebook to avail Facebook SDK in C#.NET. Help!
abhishek-23
  • 496
  • 3
  • 5
  • 15
21
votes
1 answer

How can I specify which Python version poetry should create venv?

I started using Poetry recently. I really like straightforward package management, but I can’t seem to resolve one thing: The Python version it should use. I have Python 3.9 and 3.7 on my machine. 3.7 is higher in priority in system environmental…
M.wol
  • 901
  • 3
  • 10
  • 21
20
votes
3 answers

Pip could not find a version that satisfies the requirement

I'm having problems with installing a package using pip. I tried: pip install jurigged Causing these errors: ERROR: Could not find a version that satisfies the requirement jurigged (from versions: none) ERROR: No matching distribution found…
Jip Helsen
  • 1,034
  • 4
  • 15
  • 30
20
votes
6 answers

Persistent Warning: "Multiple packages failed to uninstall."

I have a warning message that came to dinner but now won't leave. Multiple packages failed to uninstall. Restart Visual Studio to finish the process. Unfortunately, however, restarting Visual Studio has no effect—the warning remains. I've tried…
InteXX
  • 6,135
  • 6
  • 43
  • 80
20
votes
5 answers

Howto publish private projects to Sinopia (npm adduser for private registry fails)

Ok so I finally managed to get a private npm registry using Sinopia. But I cannot publish anything to it. TL;DR: Sinopia does not support npm adduser, but has its own user management. Also npm needs a valid user created before npm publish …
cdanea
  • 468
  • 1
  • 3
  • 10
20
votes
1 answer

Download python package with dependencies without installing

I need to download a python package with all its dependencies without installing, sneaker-net it to a computer without connection to the internet, and install it there. For example, I want to install buildbot, lettuce, etc. The computer is a Windows…
dkrikun
  • 1,228
  • 1
  • 15
  • 23
19
votes
5 answers

A package manager for web assets

Do you know a package manager for web assets? I'd like something that can download libraries such as jQuery so I can plug them into my asset pipeline. The js.* python packages for fanstatic are close, but they pick a single "latest" version of the…
Tobu
  • 24,771
  • 4
  • 91
  • 98
18
votes
1 answer

Searching PyPI by topic

For every python package you can specify a list of classifiers. Among others there is a Topic classifier, that puts the package in the specified categories that can be browsed on PyPI. For example, numpy has the following topics: Topic :: Software…
alecxe
  • 462,703
  • 120
  • 1,088
  • 1,195
17
votes
2 answers

Nu-Get & issue with project level dependences for projects referenced by multiple solutions

I'm trying to figure out what the best way to handle this scenario is. Let's say I have a library that's referenced by multiple different non-related solutions, let's call it WebServiceInterface.dll. This library has a dependency on JSON.NET. …
Chris B
  • 926
  • 7
  • 16