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
0 answers

Clear apps cache in android

I am implementing an app to clean cache of installed applications,And what I have tried is following : public static void freeAllAppsCache(final Handler handler,Context oContext) { File externalDir =…
0
votes
1 answer

download python dependency packages to current directory using pip

I have aws lambda function which internally uses trophosphere module. Can I download trophosphere to local file system using pip or similar without installing it? My aim is to download dependencies and zip with my python script. How I can do this?
Vijay
  • 924
  • 1
  • 12
  • 27
0
votes
2 answers

Trouble creating Conan package

I'm trying to use Conan to package some files and executables together for version control, however after looking at the Conan documentation it's still unclear to me how to do this, or if Conan is even the right tool for the job. Basically I want…
Stefan
  • 211
  • 3
  • 14
0
votes
1 answer

Cannot Access Nuget Package After Upgrade to 4.6.1

I start a blank VS 2015 project from scratch; for this test I chose new console app. The new project is targeting framework 4.5.1. I manage Nuget packages for the solution. I look for a Nuget package recently upgraded to 4.6.1. I cannot see it as…
Dave Ziegler
  • 1,737
  • 3
  • 19
  • 36
0
votes
1 answer

Multiple RPMs unpacking to the same directories-best practices and rationale

From what I've seen in documentation, when unpacking an RPM, best practices are to unpack it in /opt//. My question is, is there a compelling reason from either a system administration or technical perspective why it wouldn't be…
kbrian187
  • 163
  • 1
  • 11
0
votes
2 answers

Including node modules in HTML

I'm struggling to get my head around how npm manages dependencies - in terms of how they are actually referenced in HTML. Say I have a specific version of a plugin installed, which includes a version number in its path or file name - if npm is…
DJC
  • 1,175
  • 1
  • 15
  • 39
0
votes
1 answer

GIT Bash, npm start error

i am getting the following error on npm start command, angular-quickstart@1.0.0 prestart C:\Project\myapp npm run build angular-quickstart@1.0.0 build C:\Project\myapp tsc -p src/ angular-quickstart@1.0.0 start C:\Project\myapp concurrently…
Mithun
  • 1
  • 1
0
votes
1 answer

AEM Package Manager not Installing Package filters properly in target production environment

I am new to AEM, I am trying to install a package in production environment. I downloaded an existing package from QA Author with one filter no rules: /etc/tags/name-us-2/video. I checked the zip files it contains 9 sub folders no files on any…
yesco1
  • 371
  • 2
  • 7
  • 22
0
votes
1 answer

Building a project with Conan C/C++ Package Manager

Hy all, I want to build a project with Conan C/C++ Package manager, i have some issues... it can't find the Conanfile but the Conanfile exists! ... CentOs ... I have a folder "mytimer" : [user mytimer]$ ls build CMakeLists.txt Conanfile.txt …
user7127267
0
votes
0 answers

Npm package install failure

Trying to learn nodejs following a few articles. I'm able to download and make sure its working using a video from youtube. But now I'm trying to incorporate that in Visual Studio .net 4.5.2. I've tried to added it via new get package manager and…
Troy Bryant
  • 994
  • 8
  • 29
  • 60
0
votes
1 answer

Updating brew package in bash script on OSX

I'm working on a bash script that depends on specific package. This script will be used globally, on different machines. Some of them will have it, and some not. How could I verify, as part of the bash script, if package is installed and to…
Johnny
  • 14,397
  • 15
  • 77
  • 118
0
votes
0 answers

c++ os-independent package manager like python's pip?

As a python user, if I require a module pip install whatever, it magically handles dependencies and such. Python spoiled me! I'm NOT prepared for the world of C++! It has taken me some considerable effort just to simplify this question, so bear…
Pipsqweek
  • 404
  • 4
  • 19
0
votes
0 answers

Should I remove node_modules before deploy with yarnpkg?

Since yarnpkg states that their installs are deterministic, does that mean that I can keep the previous version of node_modules to reduce build time even further?
ex-zac-tly
  • 979
  • 1
  • 8
  • 24
0
votes
2 answers

Run ui-codemirror in JSBin

I want to move this code in Plnkr to JSBin. It does not work, and DevTools shows Error: ui-codemirror needs CodeMirror to work... (o rly?). It seems that Plnkr has some dependency management that JSBin does not have. I would like to know what Plnkr…
user6330767
0
votes
1 answer

Building a C++ formula for homebrew

I have very very little experience with Ruby and I was trying to build a simple homebrew formula. I had a simple test project with the following structure . ├── Makefile └── test.cpp 0 directories, 2 files And then I have the following .rb…
Curious
  • 20,870
  • 8
  • 61
  • 146