Been at it for a few days and can't seem to get this to work. I got it going on Linux, but my Windows 10 machine(SDR PC) just can't get it.
I have tried VS, MS Compiler, MinGW.
Keep running into this issue below. I have tried downloading the source and doing a "pip install -e <Quisk tar gz>" I have tried "pip install quisk"
Box is Windows 10, Python 3.11.4
"C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.36.32532\bin\HostX86\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -DQUISK_HAVE_ALSA -DQUISK_HAVE_PULSEAUDIO -IC:\Users\User\AppData\Local\Programs\Python\Python311\include -IC:\Users\User\AppData\Local\Programs\Python\Python311\Include "-IC:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.36.32532\include" "-IC:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.36.32532\ATLMFC\include" "-IC:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.22000.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.22000.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /Tcac2yd/remote.c /Fobuild\temp.win-amd64-cpython-311\Release\ac2yd/remote.obj
remote.c
ac2yd/remote.c(12): fatal error C1083: Cannot open include file: 'sys/time.h': No such file or directory
error: command 'C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Tools\\MSVC\\14.36.32532\\bin\\HostX86\\x64\\cl.exe' failed with exit code 2
[end of output]
ac2yd/remote.c(12): fatal error C1083: Cannot open include file: 'sys/time.h':
No such file or directory
If that would be the only issue, it would be easy to fix.
Wait until you enter the use of
complex float x
etc.
I.e. you have to use
gcc.exe
, not
cl.exe
.
I made the same mistake a few days ago.
Read the documentation!
--- doc snip ---
You must first install the most recent supported version of 64-bit Python. If you already have 64-bit Python 3 installed, that is OK too.
Quisk requires Python 3.8 or 3.9 or 3.10.
There may be newer versions of Python, but until support is added, use the versions listed above. Python is
--- end doc snip ---
I have installed python 3.8.2 on my Windows laptop and quisk compiles and run without any problems.
de oz9ny, niels
On Thu, Jun 29, 2023 at 4:10 PM Niels Jalling <
niels@...
> wrote:
I made the same mistake a few days ago.
Read the documentation!
--- doc snip ---
You must first install the most recent supported version of 64-bit Python. If you already have 64-bit Python 3 installed, that is OK too.
Quisk requires Python 3.8 or 3.9 or 3.10.
There may be newer versions of Python, but until support is added, use the versions listed above. Python is
--- end doc snip ---
I have installed python 3.8.2 on my Windows laptop and quisk compiles and run without any problems.
de oz9ny, niels