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
-1
votes
1 answer

What's the apt (Linux) equivalent of composers composer.json file?

As a web developer turned server administrator it's obvious to me that version control in servers is simply missing. We try to compensate with heavy weight solutions like virtual machines. But since composer (phps package manager) has shown us that…
Technolo Jesus
  • 147
  • 2
  • 9
-1
votes
3 answers

GCC version 4.9 has no installation candidate

I'm trying to install gcc version 4.9 on Ubuntu to replace the current version 7.5 (because Torch is not compatible with version 6 and above). However, even following precise instructions, I can't install it. I did: sudo add-apt-repository…
Totemi1324
  • 468
  • 1
  • 6
  • 19
-1
votes
1 answer

Govendor is not importing newer versions

Old versions of golang.org/x/net/html have vulnerabilities. Yikes! Better upgrade the packages. We used govendor to set up our Shopify integration project two years ago; so lets use govendor to upgrade: ip-192-168-3-40:Shopify-Gateway username$ git…
kingledion
  • 2,263
  • 3
  • 25
  • 39
-1
votes
1 answer

How can I update zlib to a custom version in Debian

I've a special/very slim version of debian. I want to install a custom version av zlib and I only want one zlib version on my system. Let's say I update zlib, then I also need to recompile and update (for example) openssh since it has zlib as one of…
iveqy
  • 19,951
  • 1
  • 15
  • 20
-1
votes
1 answer

When exactly is package-lock.json used?

I know the main point of having .lock files is that they contains specific versions of packages (whereas package.json can specify ranges), so that when you install the same project on different machines, you can guarantee the same versions of…
gkeenley
  • 6,088
  • 8
  • 54
  • 129
-1
votes
1 answer

Package Manager getting error Failed to generate a user instance of SQL Server due to a failure in starting the process for the user instance

While i use update-database command in nuget package manager. getting "Failed to generate a user instance of SQL Server due to a failure in starting the process for the user instance. The connection will be closed." i check SQL Server…
Syan
  • 137
  • 1
  • 5
  • 17
-1
votes
1 answer

How can I access the library link after installing using anaconda?

I installed the hdf5 library using miniconda. Now, I have to do EXPORT LIB_HDF5=/XYZ/ But I don't get anything when I try which hdf5 However, I can see hdf5 when I do conda env list This is the first time I am using conda outside of managing Python…
maximusdooku
  • 5,242
  • 10
  • 54
  • 94
-1
votes
1 answer

How to sync source code and/or binaries for multiple repositories

I am looking for a tool (package/dependency manager?) to help synchronize code and/or binaries while developing/testing/debugging a project that is split across several repositories. Initial Conditions - I have a project that is split across three…
femot
  • 466
  • 4
  • 8
-1
votes
3 answers

Date and time of the applications last launch

In my application, you need to get the date and time of the all applications last launch on the device. Can I somehow get this information by standard means?
user1854307
  • 580
  • 4
  • 8
  • 21
-1
votes
1 answer

What does apt-get install 3.5 do?

I asked a question here about accidentally calling apt-get install python 3.5(space intentional) on Linux Mint. I learned, or was reminded that it was the same as calling ...install python, then calling ...install 3.5. My new question is this: I…
SteveJ
  • 3,034
  • 2
  • 27
  • 47
-1
votes
1 answer

Installing dependent R packages to R_LIBS_USER directory

I have a library (in this case ggplot2) installed at the system level. I want to install ggplot2 and all it's dependencies to a new directory which is specify in the R_LIBS_USER variable. When I run install.packages('ggplot2', dependencies=TRUE) it…
jamesatha
  • 7,280
  • 14
  • 37
  • 54
-1
votes
3 answers

Android context getPackageManager hasSystemFeature

This is my code in java: public class TestAudio extends Activity { private TextView t1; private Context context; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); …
MarvinC
  • 89
  • 1
  • 1
  • 8
-1
votes
1 answer

== and .equals() not working in java

So I was trying to compare the string in PackageInfo and ApplicationInfo and retrieve their package name in Android Studio. List packages = pm.getInstalledApplications(PackageManager.GET_META_DATA); List apps =…
Pwn Fire
  • 64
  • 2
  • 7
-1
votes
1 answer

Package name of current running application package name Android 6.0

I am using custom keyboard to share image to any app like Facebook,whatsApp and i want to know the current open application package name on onIteamClickListener of my custom keyboard to share data without chooser dialog. Below is my…
Mohd Sakib Syed
  • 1,679
  • 1
  • 25
  • 42
-1
votes
3 answers

Android get package name of current opened application

I am working with custom keyboard ,I need current package name when keyboard is open . This keyboard will be open with different different application ,so i need that application package name which is open currently. I am using following code but…
Mohd Sakib Syed
  • 1,679
  • 1
  • 25
  • 42