Questions tagged [incompatibility]
302 questions
1
vote
1 answer
How to re-write or re-sign an old windows driver so it is compatible with Core Isolation Memory Integrity
I have an old 64-bit Windows kernel-mode driver which I created for a USB device. It was built for Windows XP. The driver still works in Windows 10 and Windows 11. However, if Core Isolation | Memory Integrity is turned on in the Windows Security…

Martin Payne
- 21
- 2
1
vote
0 answers
Python bleak and pyttsx3 can't be used in the same script
Using Python 3.9
import bleak
import pyttsx3
engine = pyttsx3.init()
OSError: [WinError -2147417850] Cannot change thread mode after it is set

Val Gretchev
- 11
- 2
1
vote
1 answer
What are the versions of cpython which different implementations(jython/ironpython/pypy/etc) are roughly compatible with
i.e. jython(or other implementation) version x.y is roughly equivalent to cpython version a.b
Please list version of alternative implementation, and feel free to list multiple versions so this list will still be useful in the future. If possible…

Roman A. Taycher
- 18,619
- 19
- 86
- 141
1
vote
0 answers
How to solve incompatibility between DeepPavlov, Tensorflow and Numpy in a Python script
I am trying to run a script in Python 3.7 that makes use of DeepPavlov and Tensorflow==2.4.1.
It seems that there is an incompatibility, because:
DeepPavlov can work only with Numpy==1.18
Tensorflow==2.4.1 needs at least Numpy==1.19.2
If I…

Fabio
- 1,132
- 1
- 13
- 21
1
vote
0 answers
SSRS report expressions not being evaluated when inside an MVC3 IIS6 C# project
In my MVC3 project I wanted to add reports, so I used SSRS local report rdlc (Microsoft Reporting) by creating a sub folder and putting the .aspx web viewer and rdlc in it. All was well until I tried expressions that had any sort of script…

DNeedy
- 60
- 5
1
vote
1 answer
Unclear - Unsupported node-sass with current environment
Trying to set up instance of Facebook CTF on an AWS EC2 instance running Ubuntu 16.04 and am running into the following error when doing the quick setup.
My current version of node-sass and node are
$ node -v
v15.4.0
$ npm node-sass…

snoopy
- 121
- 1
- 2
- 9
1
vote
2 answers
How to handle bison version differences in one .y-file?
I have to support systems which come with bison version 3.0.4 and 3.4.2.
I used the variable parser_class_name in my .y-file. This one is not supported anymore with 3.4.2.
error: syntax error, unexpected string, expecting identifier
It's…

Patrick B.
- 11,773
- 8
- 58
- 101
1
vote
1 answer
Code works perfectly in Powershell 5 but not in Powershell 6
One of my tasks required creating ISO images from the list of files. I found this gist (according to author the code is in the public domain).
My company uses Powershell 6.2.2 only and that's the fact I have to deal with. Problem is that code works…

Goujon
- 606
- 8
- 16
1
vote
2 answers
java 8 string list function with lambda doesn"t work in groovy
In java 8, this code runs perfectly:
Stream lines = Files.lines(outfile) {
List replaced = lines
.map(line ->
line.replaceAll('date1', "$newdate1"))
.collect(Collectors.toList())
…

spr654
- 11
- 1
1
vote
1 answer
How to Fix "An incompatible SQL Server version was detected" VS 2015
This Question is might be duplicated (But my issues isn't resolved yet).
I have Visual-Studio 2015 and I want to work on WPF application with VS Local DB /LINQ to SQl. But When I tried to create tables in local database following error appeared
"An…

Mr. Xek
- 81
- 3
- 12
1
vote
1 answer
Not able to get java version in windows
When I run on console javac -version, I get the version number as 11.0.2, but when I run java -version I get the following error:
Error: opening registry key 'Software\JavaSoft\Java Runtime Environment'
Error: could not find java.dll
Error: Could…

Sai Pavan
- 173
- 1
- 12
1
vote
2 answers
TensorFlow 1.9.0 and Python 3.6.5
I'm trying to upgrade to Tensorflow 1.9 within a conda environment (Ubuntu 16.04). I am using python 3.6.5. When I try this:
source activate myenv
sudo -H pip install --ignore-installed --upgrade…

roman
- 1,340
- 9
- 33
1
vote
1 answer
Cannot run Visual Studio 2010 Outlook Add-in on machine with Outlook 2007 installed
Problem summary: How to run Outlook 2010 add-ins with only Office 2007 installed
I have 2 machines with Office 2010 and Visual Studio 2010 installed. One PC is Windows 7 64bit; the other machine is WinXP SP3. I developed my first Outlook 2010 Add-in…

John Adams
- 4,773
- 25
- 91
- 131
1
vote
1 answer
VBA Select Case type incompatibility
I have got this sub and this function you see below. It gives me a runtime error 13: type incompatibility on the following row and I dont know whats wrong
Select Case ((Cell.Offset(0, -2).Value - Cell.Offset(0, -1).Value) - (CellX.Offset(0,…

T. P.
- 101
- 1
- 9
1
vote
0 answers
Ruby on Rails AWS Opworks creates encoding incompatibility utf-8 and ascii-8bit
I have some code which looks up domains in a database via DNS to get the SPF and DMARC records - the code works flawlessly on cloud9, but when deployed to an EC2 instance on AWS (created using Op works) the same code throws the error below - I am…

tonytdcom
- 11
- 1