Questions tagged [lib]

This tag should not be used. If your question is about a particular library, use the tag for that library instead. If it is about using libraries generally, use one of [libraries], [shared-library], [static-library], [class-library], etc. If it is about liberal politics, try politics.stackexchange.com.

761 questions
3
votes
1 answer

Import Python library without installing

Is there a way how to import Python library like pandas into script without using pip install? I already tried downloading .whl file or raw source code and try to use sys.path.append(path to library) import pandas what I found should be solution…
TeaPack
  • 41
  • 4
3
votes
2 answers

How can I fix an "OMP: Error #15: Initializing libiomp5.dylib, but found libomp.dylib already initialized" error?

I get this error when I'm running Python 3.6 Jupyter notebooks in the console. OMP: Error #15: Initializing libiomp5.dylib, but found libomp.dylib already initialized. OMP: Hint This means that multiple copies of the OpenMP runtime have been…
O.rka
  • 29,847
  • 68
  • 194
  • 309
3
votes
0 answers

R Error when installing/loading packages from library on company pc

After opening R Studio the following Error-message appears: This error also always appears in the end when I am trying to install or load packages: Error: invalid version specification ‘NA’ In addition: Warning message: In…
funkfux
  • 283
  • 3
  • 14
3
votes
1 answer

Do C++ executable includes .obj, .lib and .dll?

I have a C++ project that output a C++ .exe . The project is dependant of some .lib and .dll. If I want to use the .exe on another server, can I just transfer the .exe withtout the .lib, .dll, and .obj? Do the .exe was build so it 'includes' these…
3
votes
1 answer

Correct library or runtime for GattDeviceServicesResult for BLE in .NET

UPDATE I now have reason to believe that you can't use Windows Creator on Enterprise LTSB because the version isn't high enough and can't be updated! If someone could confirm this AND state how I should go about developing a Bluetooth app given…
Dave
  • 8,095
  • 14
  • 56
  • 99
3
votes
0 answers

Python package installation issues with lib & lib64 in RHEL 7

I am trying to install Python packages like numpy, pandas, etc in my Hadoop cluster which is installed in Red Hat (RHEL 7). I downloaded tar files, extracted them and then exceuted Python set.py install command to install the package. I need…
3
votes
2 answers

Linking to shared and static libraries with c++ on a Linux system

I am messing around with a test project, lets call it mytest, it has a .cpp and a .h file, the contents are not really important - imagine it contains a few simple hello_world() type functions... So, I was making a generic makefile to compile this…
code_fodder
  • 15,263
  • 17
  • 90
  • 167
3
votes
0 answers

Getting capture date of heic image

I am using the nokiatech heif api (github.com/nokiatech/heif) to process heic files produced by the IOS betas. I am able to get the tiles and metadata like rotation and dimensions, but I am unable to locate the capture date of the image. I found…
3
votes
0 answers

Get frame with vlc-lib python

OS: Ubuntu 16.04 Python: 3.5.3 vlc-lib: 1.1.2 camera protocol: RTSP I need get the frames without the open windows with the python-vlc library the only way I found to streaming RTSP) Here is my code import vlc import time import…
3
votes
1 answer

Format of Microsoft Visual Studio import library

It is known that Visual Studio library *.lib file is an Unix "ar" archive containing object modules in COFF format. But I found that libraries for importing DLL is an archive of small chunks (or stubs) that are not COFF objects. An example is the…
Serge Goncharov
  • 488
  • 1
  • 6
  • 13
3
votes
1 answer

many missing .lib files in the installed OpenCV3.2.0 for Windows 10 64bit

I am using a code that depends on the opencv libraries however the one I downloaded from the web only has the opencv_core320.lib. How can I install opencv so that I will access to all these libraries that I have in the input section of Linker in the…
Mona Jalal
  • 34,860
  • 64
  • 239
  • 408
3
votes
0 answers

Qt user and system libraries

I'm trying to compile a set of libraries and programs with a custom Qt version (system: 5.5.1, user: 5.8.0). For the majority of them, everything works fine, except for only one. I have correctly set the environment variables needed (proved by the…
kronat
  • 75
  • 4
3
votes
0 answers

How to use external library 'benchmark.js' in Angular2?

I am developing application using Angular2. I am trying to import and use external library 'benchmark.js'. So, I install it using 'npm i --save benchmark'. The dependencies of package.json is like following. "name": "angular2-webpack", "version":…
Anna Lee
  • 909
  • 1
  • 17
  • 37
2
votes
1 answer

Weak pointer library implementation C++

#include using namespace std; class Printer { weak_ptr m_Value{}; public: void SetValue(weak_ptr p) { m_Value = p; } void Print() const { cout << "ref count = " << m_Value.use_count() <<…
amutamil
  • 35
  • 4
2
votes
2 answers

TensorFlow GPU problem 'libnvinfer.so.7' and ' 'libnvinfer.so.7'' could not load

I installed TensorFlow under WSL 2, Ubuntu 22.04 (Jammy Jellyfish), I followed the instructions in Install TensorFlow with pip. *I also installed Nvidia drivers for Windows and in my other WSL 2, I use GPU-supported simulation program. Everything…
BARIS KURT
  • 477
  • 4
  • 15