Questions tagged [binaries]

* Compiled computer programs are sometimes called "binaries". Instead of this tag, use [tag:executable] for this sense.

191 questions
0
votes
0 answers

How does exec java
work in bash?

I have come across a bash script that appears to be running a java main class without compiling it or producing a binary. Namely I am looking at the final lines of this script: MAIN_CLASS="com.amazon.kinesis.streaming.agent.Agent" exec $JAVACMD…
user313
  • 681
  • 1
  • 8
  • 21
0
votes
1 answer

issues with installing fabric samples

some files are missing from the Fabric samples, docker images, and binaries download like the first-network folder and others. how do I get the missing files imported on vscode?
0
votes
0 answers

Is it possible to compile a go binary that runs an external python script?

I'm planning to write a python script that executes a machine learning algorithm. But, I need a go binary to implement it as a server extension (chirpstack server). Is it possible to compile a go binary using go code that executes an external python…
Newt573
  • 11
0
votes
0 answers

How to automate batch command file for globally installed package?

Good day!, I don't know if my question is correct. but what happens here is I created my own local development environment with the portable binaries. Please see: Everything is working fine except for NPM. Everytime I install a global package in…
jreloz
  • 413
  • 4
  • 18
0
votes
1 answer

Knative suggested way to store binaries

Knative does only support persistent volumes of type secret, configMap or projected. Here in the doc is mentioned a workaround to work with other persistent volumes. It's not clear to me what is the suggested way, and not a workaround, to store…
Marco
  • 43
  • 5
0
votes
0 answers

Why Do the Lua Binaries Contain .h and .c Files, but Lua IUP Binaries Contain .DLLs?

I'm trying to update an old app that uses Lua and IUP, but I'm not very experienced, so I'm wondering if I have too many files. I originally downloaded Lua 5.4.3 and followed a tutorial on how to turn those .c and .h files into Lua.dll, Lua.exe,…
Tailcoat
  • 13
  • 5
0
votes
1 answer

How Do I Update An Existing App's Lua Libraries?

I've been working on updating an old app that uses Lua 5.1 and IUP 2.5.1, and I want to update the versions of Lua and IUP it uses, but I'm a novice at this stuff, so I don't know how. I tried Googling for answers, but I had trouble understanding…
Tailcoat
  • 13
  • 5
0
votes
1 answer

What exactly are Binaries in Artifactory

In Artifactory, under the Storage in Monitoring tab, the Binaries size is 1.57 GB, whereas the Artifacts size is just 6.27 MB. What exactly are Binaries in Artifactory, as they are taking a lot of Storage. Is it possible to delete these Binaries…
0
votes
0 answers

How to get commands working globally in linux CLI

I am trying to get minizinc working with my node.js app. I followed the instructions at https://www.npmjs.com/package/minizinc but errors state that minizinc was not found. I understood that the above install was just a wrapper for the actual…
MikeyB
  • 460
  • 1
  • 6
  • 22
0
votes
2 answers

Binaries size not decreasing after artifact deletion in Artifactory

I have deleted all the artifacts from my instance of Artifactory cloud, and I have deleted all the repositories, but the Binaries size is still showing as 1.5GB. How to resolve this issue? I am not seeing a maintenance option in JFrog. I am an…
0
votes
0 answers

ZLib 1.2.11 - create binaries - Win10 - Visual Studio 2019 - c++

My Question: How can I create the binaries for zlib 1.2.11 with Visual Studio 2019? Information: The binaries are used in a c++ v142 project. I specially need the zlibwapi.lib, zlibwapi.dll and all required headers (zip.h, zlib.h, zconf.h,…
BrayanK
  • 1
  • 3
0
votes
1 answer

How to install MongoDB tools on Mac

I want to use some of the tools on MongoDB tools (for example mongoexport, mongodump). I downloaded MongoDB tools from their download page which gave me a zip file. I unzipped it, but it was not clear how to install the tools. So I just copied…
Andrew Einhorn
  • 741
  • 8
  • 23
0
votes
1 answer

How to deal with the "platform specific dynamic library" problem with uploading to PyPI?

I have a Python package that depends on binaries. I've build the linux version and it is available on PyPI. The key was setting the package_data argument to ensure the *.so files were also uploaded to PyPI. Now I want to do the same thing with…
CiaranWelsh
  • 7,014
  • 10
  • 53
  • 106
0
votes
0 answers

Transforming file sto HDF5 format

I want to train my word2vec models on the hpc cluster provided through my university. However, I have been told that in order to optimize storage on the cluster, I must transform my data into HDF5 and upload that data instead into the cluster. My…
Perl Del Rey
  • 959
  • 1
  • 11
  • 25
0
votes
1 answer

Deploy server binaries on google cloud

I have a server binary (gitea) which I am trying to deploy on google cloud App Engine. I can run it successfully on the google cloud console, checked it using web viewer provided in the console. I have few doubts regarding the deployment on google…