Questions tagged [lib]

556 questions
25
votes
2 answers

What does the TypeScript "lib" option really do?

I have still not been able to find good answer for this. The "target" option defines, what version of Javascript the result will run on. The "lib" option is less clearly described anywhere. Seems like it is a more granular way to describe the target…
12
votes
3 answers

Installing GCC from source on Alpine

While trying to install GCC 6.4.0 on Alpine, I run into: checking for the correct version of gmp.h... yes checking for the correct version of mpfr.h... yes checking for the correct version of mpc.h... yes checking for the correct version of the…
Gabriel Fernandez
  • 395
  • 1
  • 2
  • 13
11
votes
1 answer

Where is libappindicator3.so.1?

I'm trying to install Google-Chrome on CentOS7(Linux 3.10.0-514.el7.x86_64). The file (libappindicator3.so.1()(64bit)) is needed, but there is no such file on the https://pkgs.org/. So please help me fix this problem, thanks. [leohu@SpaceX…
leoleohu
  • 194
  • 1
  • 1
  • 10
10
votes
1 answer

Is there any documentation for dnnlib: additional lib in projects of NVlabs?

There is special unified lib named dnnlib in noted projects from NVlabs like Noise2Noise, StyleGAN and etc. It seems like this lib was made for parsing and easy configuration, but it also participates in creating and managing tensorflow sessions.…
Arina Boiko
  • 113
  • 9
10
votes
1 answer

can't import Vue component built by vue-cli-service

I'm quite new in Vue and maybe my issue is trivial. What I have to do: I want to create a Vue component that I can put in a NPM private repo and import it into other projects with a sth like bundle.js file TLDR: can't import vue component building…
Oskar Kosowski
  • 526
  • 4
  • 10
9
votes
0 answers

Can't find referenced method 'java.lang.Object injectMembers(dagger.MembersInjector,java.lang.Object)

Recently I upgrade Dagger 2.13 to 2.19, I have the below compile error at Proguard stage of this warning. Warning: com.mypackage.MyClass_Factory: can't find referenced method 'java.lang.Object injectMembers(dagger.MembersInjector,java.lang.Object)'…
Elye
  • 30,821
  • 26
  • 115
  • 272
9
votes
0 answers

VS Code add library dependencies?

I want to add library dependencies to my project without having to copy and paste them to MinGW folders. Is there some way to do this through VS Code instead? Pretty much something similar to how Visual Studio works with the include paths. NOTE: my…
Matthew
  • 682
  • 1
  • 10
  • 30
8
votes
2 answers

Issue in installing oracle 18cxe on ubuntu 18.04

I am trying to configure Oracle XE but am facing the below issue: root@venky-Lenovo-G510:~# /etc/init.d/oracle-xe-18c configure /bin/df: unrecognized option '--direct' Try '/bin/df --help' for more information. Specify a password to be…
venky513
  • 331
  • 2
  • 15
7
votes
1 answer

Import third party js files to angular typescript project

During my experience in angular I was forced to use four different ways of include 3-rd party library poliglot.js (for multilang). So to be able use new Polyglot(...) in my Lang class: export class Lang { ... constructor() { …
Kamil Kiełczewski
  • 53,729
  • 20
  • 259
  • 241
6
votes
2 answers

Fatal error LNK1104: cannot open file 'libboost_log-vc141-mt-gd-1_64.lib'

I'm writing a program which utilizes Boost logging features and consequently, when attempting to build the said program, I'm getting the following error when generating code (on Visual Studio 2017): 1>LINK : fatal error LNK1104: cannot open file…
Dash
  • 182
  • 3
  • 14
5
votes
2 answers

Can't add android library to JCenter

I am trying to publish the library to JCenter with Bintray, according to this article: https://medium.com/@anitaa_1990/6-easy-steps-to-upload-your-android-library-to-bintray-jcenter-59e6030c8890. I successfully added the library to Bintray, but when…
Andrii Chernysh
  • 315
  • 3
  • 13
5
votes
3 answers

Which type of #include ("" or <>) when writing a library in C/C++

I am writing a library in C++. The library has multiple headers and cpp files and needs to be cross platform (Windows Visual Studio and Linux gcc). When built the library and headers are installed in a system directory somewhere, where they can be…
Phil Rosenberg
  • 995
  • 9
  • 18
5
votes
3 answers

Android Studio3.2 APK Build Error -> reserved file or directory name 'lib'

Android Studio Version 3.2 (AI-181.5540.7.32.5014246). In Android Studio 3.1, I was able to build SignedAPK successfully. But as soon as I made Android Studio 3.2, I could not build a SignedAPK at all. What is the cause of this problem? I have not…
user3323951
  • 347
  • 3
  • 10
5
votes
0 answers

What is the best way to build pure Vue components using Typescript

I'm building new project using Typescript, Vue, webpack and lerna to manage related packages. Structure of my project is: /packages /lib-vue-components /lib-ts-components /app lib-vue-components are meant to be reusable components…
abradas
  • 81
  • 4
4
votes
2 answers

Python Barplot to represent Ranges

I want to make a categorical plot in python to represent the range of several variables. I thought maybe I would use a bar plot and set ranges for the bars. Here is my bar plot import matplotlib.pyplot as plt import numpy as np data = {'a':.3, 'b':…
codes4toads
  • 45
  • 1
  • 5
1
2 3
37 38