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

Is it possible to construct build environment for cross-compiling for different target environment?

In these days, I'm learning joy of open-source world. With Homebrew package build management system on Mac OS X. Building software for my purpose was so easy and simple. Anyway, those package systems are designed for host system only. If I want to…
eonil
  • 83,476
  • 81
  • 317
  • 516
0
votes
1 answer

I'm trying to test "mayastor" on k8s and i need to install Kernel module 'nvme_tcp`

However, i have the following issue : sudo microk8s enable core/mayastor Checking for HugePages (>= 1024)... Checking for HugePages (>= 1024)... OK Checking for nvme_tcp module... Kernel module 'nvme_tcp' is missing or not loaded. For Ubuntu,…
Theodor
  • 1
  • 2
0
votes
0 answers

Install a CLI program that I created

I created a Cobra CLI application, and after releasing it with Go releaser. What I am trying to do is be able to download it and then have it be able to run locally from the binary. So what I would like is to do is: click the binary install it…
Ctfrancia
  • 1,248
  • 1
  • 15
  • 39
0
votes
1 answer

Upload a package to multiple package managers from a single repo

I had created a python package Categorize-CLI and had uploaded it to pypi, the source code of the project is available in Github, is it possible to upload this project to multiple package management systems like Homebrew and Conda from a single repo…
Rohith Nambiar
  • 2,957
  • 4
  • 17
  • 37
0
votes
0 answers

Workflow for maintaining local Git repo shallow-cloned at latest release tag

I wanted to ask if there's a good workflow for this, or if I should just write a script. For some repositories, I'd like to: Shallow git clone the repo from the latest release tag Use a variation of git pull or git fetch to pull only the latest tag…
catleeball
  • 781
  • 7
  • 16
0
votes
1 answer

Can I add a Suggests field to debian/control with a newer version recommendation for a package already in Build-Depends?

My application, ROXTerm, depends on vte-2.91 >= 0.52, but it performs a run-time check for a new feature in vte 0.64 which it can use to enhance UX by enabling kinetic scrolling for touch input devices, which otherwise would only be available by…
realh
  • 962
  • 2
  • 7
  • 22
0
votes
1 answer

PowerShell Install-Module Error - No Match was found for specified search criteria and module name 'PackageManagement'

I am trying to run the following command in my Windows 10 PC , and PowerShell version 7.1.2 > Install-Module PowerShellGet, PackageMAnagement -Force -WarningAction SilentlyContinue But I am getting the below error as shown in the screenshot : -- No…
user3254725
  • 65
  • 1
  • 9
0
votes
1 answer

Can you manage R package conflicts by explicitly referencing packages in function calls?

I don't like that you can have R package conflicts in function calls, or namespace collisions. For instance, plyr and dplyr have functions with the same names, so if you have them both loaded you need to know which functions these are so you can…
0
votes
1 answer

Packages don't match when conda uninstall and install

There has been an ImportError when opening jupyter notebook so I followed here and ran conda uninstall pyzmq -> conda install pyzmq. I used conda instead of pip since people say "Don't mix up conda and pip commands under conda environment". Then I…
koyamashinji
  • 535
  • 1
  • 6
  • 19
0
votes
0 answers

How to remove package from internal git repo

We have created an internal git repo in R studio package manager. If at some point I wanted to remove the package and publish it again, how do I remove the package from the repo? We are able to remove the git-builder from source. Now since this…
narayanan s
  • 101
  • 2
  • 11
0
votes
0 answers

Managing python dependecies for installing other packages

Python packages can be installed via system packages managers (e.g., apt) or through dedicated managers (e.g., pip). Consider installing a system package that depends on python packages. What is the best practice on managing python dependencies of…
Camandros
  • 449
  • 6
  • 22
0
votes
1 answer

How can I search conan for packages by description text?

I've not used Conan before. I've now installed it, and I basically know how to install a package with it, but - I need to find packages. I've gone here: https://bintray.com/conan/conan-center and there's a search interface, but it seems to ignore…
einpoklum
  • 118,144
  • 57
  • 340
  • 684
0
votes
0 answers

import gi returns ModuleNotFoundError; apt install python3-gi returns python3-gi is already the newest version

If I run python it defaults to python 2.7 and import gi works OK. If I run python3 import gi returns the error. I assumed (wrongly) that apt install python3-gi would force installation into python 3.8 (my latest version), but it seems to be picking…
d8sconz
  • 279
  • 4
  • 14
0
votes
1 answer

Python app built with py2app missing _sysconfigdata

I am trying to build a standalone Python 2.7 application on MacOS (it relies on some old code) using py2app. My program relies on a number of packages, including pyne. The program uses a conda environment for package management (which is located in…
book_kees
  • 307
  • 1
  • 9
0
votes
2 answers

Unable to locate package coturn | Debian 10

I have a fresh server with debian 10.3. I want to use it as a STUN/TURN server for webrtc. But I have already issues with step one. Installing coturn. Every single guide tells me: On Debian and Ubuntu there are official repository packages…
Roman
  • 3,563
  • 5
  • 48
  • 104