Questions tagged [conflicting-libraries]
162 questions
1
vote
0 answers
How to resolve versionConflict error in Termsteel (PyJWT, flask-jwt-login and argon2-cffi)?
Hi I have a problem whit python packet conflict except that the problem is not so simple, it is not enough just to solve this conflict. I don't want to change my code, what can I do?
Error :
ERROR: ResolutionImpossible: for help visit…

Afi _
- 9
- 2
1
vote
1 answer
R how to select functions between conflicting libraries
When writing scripts on R,
I had trouble choosing functions with overlapping packages.
For example,
library(dplyr)
library(tidyverse)
~~~~~
And in the console,
-- Conflicts ---------------------------- tidyverse_conflicts() ---
x dplyr::filter()…

홍정의
- 13
- 2
1
vote
0 answers
How do you handle conflicting python library dependency versions
I want to run two different libraries that require different versions of the same dependency (for example if one library required pandas 0.25 and another library requires pandas 0.5). I basically am running one library to prepare data, then run the…

Stephen
- 9
- 2
1
vote
1 answer
Determining which version of a function is active when many packages are loaded
If I have multiple packages loaded that define functions of the same name, is there an easy way to determine which version of the function is currently the active one? Like, lets say I have base R, the tidyverse, and a bunch of time series packages…

andrewH
- 2,281
- 2
- 22
- 32
1
vote
1 answer
Conflicts during PyGMO installation on Mac OS X 11.2.2 with Anaconda
I am attempting to install PyGMO on Mac OS X 11.2.2 (with Anaconda which I reinstalled so the Anaconda Navigator is now upgraded to 2.0.1.)
After the installation starts, it collects package metadata and reports it found package conflicts. How can I…

user64150
- 59
- 5
1
vote
1 answer
Classpath conflict problem (com.google.api.client.http.HttpTransport)
I'm struggling to make my spring boot application start, it presents this error at boot:
***************************
APPLICATION FAILED TO START
***************************
Description:
An attempt was made to call a method that does not exist. The…

funder7
- 1,622
- 17
- 30
1
vote
0 answers
java.lang.NoSuchMethodError: com.google.api.client.http.HttpRequest.setWriteTimeout(I)Lcom/google/api/client/http/HttpRequest
I have updated apache-beam-sdk from 2.18 to 2.23 and using guava library 29.0-jre while running the dataflow i am getting the following error.
I have gone through some git hub links and tried to fix but, it doesn't seems to work.
Any help will be…

Raman Mishra
- 2,635
- 2
- 15
- 32
1
vote
1 answer
Job Scheduler and Work manager conflict when Configuration.Builder() called in MyApplication() Android
So, I declared my Worker Class NotifyWorker and called it in the MainActivity with the below code :
import android.app.Application;
import android.content.BroadcastReceiver;
import android.content.IntentFilter;
import android.util.Log;
import…

segfault404
- 281
- 1
- 11
1
vote
0 answers
Linkage error when using static library in executable
I am trying to build an executable which should be linked with the
mosquitto (libmosquitto.a)
json-c (libjson-c.a)
Also, there is a custom C API built as a static library as well: myCAPI.a
My linux is Ubuntu 18.04 running under virtual machine.…

David Hovsepyan
- 509
- 1
- 3
- 18
1
vote
1 answer
Conflicting logging with Python pid package
I've been working on a python daemon with pid, and after initial logs directly to console I wanted to switch to file logging, using python's logging module. This is when I run into the problem.
I have start/stop functions to manage the…

leilerg
- 11
- 1
1
vote
0 answers
ContextualVersionConflict when importing guesslang package
When importing guesslang package, I've got ContextualVersionConflict error about html5lib package.
ContextualVersionConflict: (html5lib 1.0.1 (/Users/user_name/.pyenv/versions/anaconda3-5.1.0/lib/python3.6/site-packages),…

Hidenori
- 11
- 3
1
vote
1 answer
Implement multiple library versions with Gradle
I have two libraries, which both include by themself a different version of com.android.billingclient:billing; 1.2.2 and 2.0.3
I need to use both libraries in my project, and if I force the use of one, one of both libraries won't compile…

Sebastian Schneider
- 4,896
- 3
- 20
- 47
1
vote
0 answers
Set conflict for all packages of a specific vendor in composer.json
We've created a bunch of bundles, that are compatible with Symfony 4.3, so we've set
"conflict": {
"symfony/browser-kit": ">=4.3",
"symfony/http-kernel": ">=4.3"
}
Now, we want to upgrade a project, that is using these bundles to…

SGL
- 341
- 2
- 15
1
vote
0 answers
How to find which package is requiring my other packages to be downgraded
I'm wrestling with some legacy Python code. Thanks to the help of this great answer I was able to write a conda call which executes correctly, and which hopefully contains all the packages needed to run the code:
conda install IPython scipy numpy…

DeltaIV
- 4,773
- 12
- 39
- 86
1
vote
3 answers
Libraries Conflict for Quartz
have a weird situation.
I'm using Glassfish server for my Enterprise application. In that application i'm using JSF, Richfaces, Quartz, Jasper Reports, and Commons Email. When I build and deploy application to my dev. computer, dev and test servers,…

Maksim
- 16,635
- 27
- 94
- 135