Questions tagged [package-management]

The general process of managing and maintaining packages; not to be confused with the related tag, [package-managers], which is focused on the package-management tools themselves.

Packages refers to any archive files containing a computer program as well as necessary metadata for its deployment.

Typical functions of a package management system include:

  • Working with file archivers to extract package archives
  • Ensuring the integrity and authenticity of the package by verifying their digital certificates and checksums
  • Looking up, downloading, installing or updating existing software from a software repository or app store
  • Grouping packages by function to reduce user confusion
  • Managing dependencies to ensure a package is installed with all packages it requires, thus avoiding "dependency hell"
142 questions
4
votes
0 answers

Why apt-get trying to install latest version instead of installing specified needed dependencies version?

I am using Artifactory as my own debian packages repo. I have a package 'hello' that I set Depends: world (= 1.0.0.0), apple (= 3.0.0.0) in it's control file. And when I try to install that package: apt-get install hello I get the following error:…
Davis8988
  • 636
  • 3
  • 7
  • 23
4
votes
1 answer

Julia - package update notifications

I'm developing a package that has been released, but every week or every few weeks there are new features added to the core version. What I'd like to do is to notify users that new features are available such as julia> using Package Note: new…
isebarn
  • 3,812
  • 5
  • 22
  • 38
4
votes
0 answers

How to make system see freshly installed Python 2.7.8 on Ubuntu 12.04 (precise)

Summary: Several utilities do not work after I installed more recent python on my Ubuntu machine. Why? My only experience with Linux is Ubuntu 12.04 and so far I've relied on apt-get primarily for installing packages (i.e. very little experience…
jpf
  • 1,447
  • 12
  • 22
3
votes
2 answers

Does C++ have a community for libs?

I'm trying to improve my knowledge and work on C++ more than before, but I couldn't find a community or a package-management system for C++, is there anything like pip for Python for C++ projects? Or I have to always search and test different…
soroushamdg
  • 191
  • 1
  • 2
  • 14
3
votes
2 answers

Cannot uninstall mysql-server-8.0

after installing mariadb with mysql already installed, i had issues and mysql wasent working so i tried to uninstall mysql and the package broke. after frustrating hours of trying to fix this i stupidly deleted all the mysql files. at the…
joseph
  • 31
  • 1
  • 3
3
votes
2 answers

Trying to install R 4.0.1, but having an issue with Ubuntu

I tried to upgrade the last version of R in my ubuntu server, following other blogs I uninstall R from my server and I tried to install doing these steps: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys…
coding
  • 917
  • 2
  • 12
  • 25
3
votes
1 answer

NPM - how to publish only if tests pass?

I have tests setup for a package I maintain - create-new-app. When I run npm publish, I want the tests to run first and only if they pass, move on to the publish portion. I thought this is what prepublishOnly was for. My prepublishOnly value looks…
The Qodesmith
  • 3,205
  • 4
  • 32
  • 45
3
votes
0 answers

How to disable julia package warning suppression?

Scenario: Warning: does not have in its dependencies: ... Loading into from project dependency, futuree warnings for are suppressed. After adding into dependencies…
AVA
  • 2,474
  • 2
  • 26
  • 41
3
votes
2 answers

Where does Azure Artifacts code get stored in On-Premise solutions?

We have an On-Premise version of TFS 2018. I am interested in utilizing the packages (now Azure Artifacts) feature within TFS. I am wondering where the source code of the packages that are built and deployed gets stored. For example, if I build a…
3
votes
0 answers

Can I provide package parameters using Install-Package?

I know I can install packages on Windows Package Management with eg: Get-PackageSource -Provider chocolatey Install-Package -Name win32-openssh But is there a way to provide package params? Eg packages like win32-openssh have options when they're…
mikemaccana
  • 110,530
  • 99
  • 389
  • 494
3
votes
1 answer

How can I simplify my stack of package managers?

I don't know how it got this bad. I'm a web developer, and I use Ubuntu, and here are just some of the package managers I'm using. apt-get for system-wide packages npm for node packages pip for python packages pip3 for python 3 packages cabal for…
Jonathan
  • 10,571
  • 13
  • 67
  • 103
3
votes
2 answers

How to make libraries work well with Linux packaging?

I'm the author of a C++ library that is being distributed in multiple Linux packaging distributions. The library includes headers and source; Linux packages distribute it as headers + shared library (.so). I'm looking for guidelines that would make…
zeuxcg
  • 9,216
  • 1
  • 26
  • 33
3
votes
2 answers

Proper usage of Chocolatey (package update / version management)

NOTE: This question was valid for Chocolatey 0.9.8 and bellow. Later versions are completely rewritten from PowerShell scripts to a C# application and whole process of package management was improved a lot. I have been using Chocolatey for some…
3
votes
0 answers

python help('modules') returns ImportError

Recently, (I have no idea when), I installed this package called pymol. Today when I was trying to copy a list of all my install modules, I encountered this error. ~/Projects$ python -c "help('modules')" Please wait a moment while I gather a list of…
blanket_cat
  • 288
  • 2
  • 11
3
votes
2 answers

Package management running R on a shared server

some background: I'm a fairly beginning sysadmin maintaining the server for our department. The server houses several VM's, mostly Ubuntu SE 12.04, usually with a separate VM per project. One of the tools we use is R and RStudio, also server…
user3274358
  • 33
  • 1
  • 3
1 2
3
9 10