¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io

Re: Quisk Version 4.1.51 November 2019

 

Hello Mike,

Yes there is an error in the makefile. Use "make soapy" instead of "make soapy2" to make the Python2 version until I get this fixed.

Jim
N2ADR


Re: Quisk Version 4.1.51 November 2019

 

LinuxMint 19.1: Downloaded tarball and expanded.
make (with no parms) compiles without errors
The last line says to "make soapy2".
running "make soapy2" results in an error 'No rule to make target soapy2'

running "make soapy" compiles with no errors and quisk runs fine.
Also the SDRPlay error count is fixed.


Re: Quisk Version 4.1.51 November 2019

 

Hello Peter,

"python3 quisk.py" works because you specified the correct Python. "./quisk.py" fails because your default Python is Python2. When both Python2 and Python3 are installed, we are stuck with specifying the correct Python for the Quisk we are using.

Jim
N2ADR


Re: Quisk Version 4.1.51 November 2019

 


Ubuntu 18:04:
make quisk3 and make soapy3? compiles without errors
when in the main Quisk directory:
./quisk does not work
python3 ./quisk.py works

On Sat, Nov 23, 2019 at 11:00 PM jimahlstrom <jahlstr@...> wrote:
I fixed a bug in the "small screen" code when using the new wx version 4. Thanks to Martin Schaller for pointing out that underflows from the Soapy sample source should not count as errors.
?
This version fixes the Linux installation errors "ImportError: No module named _quisk". It also provides a way to run either Python2 or Python3 quisk when both are installed. To do that use "python2 -m quisk" or "python3 -m quisk".
?
The new installation instructions are here:
?
Jim
N2ADR


Re: Quisk Version 4.1.51 November 2019

 

Thanks Jim,
Tested OK HL2 with ODROID-C2 - 7 inch LCD and on HiQSDR standalone also? ODROID-C2 and 7 inch LCD.
73 ... Sid.

On 23/11/2019 22:00, jimahlstrom wrote:
I fixed a bug in the "small screen" code when using the new wx version 4. Thanks to Martin Schaller for pointing out that underflows from the Soapy sample source should not count as errors.
This version fixes the Linux installation errors "ImportError: No module named _quisk". It also provides a way to run either Python2 or Python3 quisk when both are installed. To do that use "python2 -m quisk" or "python3 -m quisk".
The new installation instructions are here:
Jim
N2ADR
--
Sid Boyce ... Hamradio License G3VBV, Licensed Private Pilot
Emeritus IBM/Amdahl Mainframes and Sun/Fujitsu Servers Tech Support
Senior Staff Specialist, Cricket Coach
Microsoft Windows Free Zone - Linux used for all Computing Tasks


Re: Quisk Version 4.1.51 November 2019

Sid Boyce
 

Thanks Jim,
Tested OK HL2 with ODROID-C2.
Tomorrow will test on Standalone HiQSDR and report.
73 ... Sid.

On 23/11/2019 22:00, jimahlstrom wrote:
I fixed a bug in the "small screen" code when using the new wx version 4. Thanks to Martin Schaller for pointing out that underflows from the Soapy sample source should not count as errors.
This version fixes the Linux installation errors "ImportError: No module named _quisk". It also provides a way to run either Python2 or Python3 quisk when both are installed. To do that use "python2 -m quisk" or "python3 -m quisk".
The new installation instructions are here:
Jim
N2ADR
--
Sid Boyce ... Hamradio License G3VBV, Licensed Private Pilot
Emeritus IBM/Amdahl Mainframes and Sun/Fujitsu Servers Tech Support
Senior Staff Specialist, Cricket Coach
Microsoft Windows Free Zone - Linux used for all Computing Tasks


Quisk Version 4.1.51 November 2019

 

I fixed a bug in the "small screen" code when using the new wx version 4. Thanks to Martin Schaller for pointing out that underflows from the Soapy sample source should not count as errors.
?
This version fixes the Linux installation errors "ImportError: No module named _quisk". It also provides a way to run either Python2 or Python3 quisk when both are installed. To do that use "python2 -m quisk" or "python3 -m quisk".
?
The new installation instructions are here: http://james.ahlstrom.name/quisk/docs.html#Installation
?
Jim
N2ADR


Re: Quisk Version 4.1.50 November 2019

 

Hi Jim,

Just followed your python3 install instructions for Linux (Mint) and got it all working without any problems.
Not yet tested extensively but looking good so far.

Thanks/73
Neil? G4BRK


Quisk 4.1.49

Gil Cross
 

Hi, have no audio in Quisk. In config it states, direct sound play device name Speakers (USB PNP sound device) not found. Under device both mic and phones are listed correctly.
Strange , because I have had sound up until I added memory.
However , at present I do have sound in? both Spark and HPSDR.

Please help? ? ? ?Gil? ? ?K8EAG


Re: Quisk Version 4.1.50 November 2019

 

Hello Group,

The "ImportError: No module named _quisk" is driving me crazy, but until I figure this out, you can work around it.

You can install either or both versions of Quisk with:

sudo python2 -m pip install --upgrade quisk
sudo python3 -m pip install --upgrade quisk

The Python2 and Python3 installations of Quisk are independent, and will not interfere with each other. But the "quisk" command installed by the Python setuptools is not working, so you need to write out the full path to the program you want to run, and use the correct Python:

python2? /usr/local/lib/python2.7/dist-packages/quisk/quisk.py
python3? /usr/local/lib/python3.6/dist-packages/quisk/quisk.py? ? ? ? ? ? # Change 3.6 to whatever Python3 version you have

The above only applies to a Quisk installation using the Python tools. If you download the *tar.gz file, you can run make quisk2 or make quisk3, and run "python2 quisk.py" or "quisk3.py" as Graeme does.

Jim
N2ADR


Re: Quisk Version 4.1.50 November 2019

 

Hello Jim,

To remove Quisk from Python3 use:

sudo python3 -m pip uninstall quisk

but that won't fix anything. Others who are not using Python 3 have also reported that the plain command "quisk" fails on the current release. I don't know why that is happening, as I didn't change anything about Python2, but I will look into it and find out.

Jim
N2ADR


Re: Quisk Version 4.1.50 November 2019

 

That works for me as well. I've tried to purge everything Python 3-related except the python3 package itself from my system, but the plain quisk command from?/usr/local/bin/quisk still fails. (It starts with?#!/usr/bin/python2.) Any ideas of other things I should try cleaning up to resolve this completely?

Jim

On Sat, Nov 23, 2019 at 8:25 AM jimahlstrom <jahlstr@...> wrote:
On Sat, Nov 23, 2019 at 08:21 AM, jimahlstrom wrote:
python3?/usr/local/lib/python3.6/dist-packages/quisk
Sorry. That should be:

python3 /usr/local/lib/python3.6/dist-packages/quisk/quisk.py

Jim
N2ADR


Re: Quisk Version 4.1.50 November 2019

 

This is working as:

python /usr/local/lib/python2.7/dist-packages/quisk-4.1.50-py2.7-linux-x86_64.egg/quisk/quisk.py

on my Ubuntu 18.04

I am using only Python 2.7 version. No Quisk for python3 installed.
Python3 version of Quisk compile and run on Ubuntu but there is no hamlib for oython3 on Ubuntu 18.04 so I am using Quisk only for python 2.7

Regards

Franco Spinelli
IW2DHW


Re: Quisk Version 4.1.50 November 2019

David Turner
 

Thanks Jim that works ok.

Dave.
g0vvf.

On Saturday, 23 November 2019, 13:25:40 GMT, jimahlstrom <jahlstr@...> wrote:


On Sat, Nov 23, 2019 at 08:21 AM, jimahlstrom wrote:
python3?/usr/local/lib/python3.6/dist-packages/quisk
Sorry. That should be:

python3 /usr/local/lib/python3.6/dist-packages/quisk/quisk.py

Jim
N2ADR


Re: Quisk Version 4.1.50 November 2019

 

On Sat, Nov 23, 2019 at 08:21 AM, jimahlstrom wrote:
python3?/usr/local/lib/python3.6/dist-packages/quisk
Sorry. That should be:

python3 /usr/local/lib/python3.6/dist-packages/quisk/quisk.py

Jim
N2ADR


Re: Quisk Version 4.1.50 November 2019

 

Hello Group,

Many people are seeing the message?
ImportError: No module named _quisk

The _quisk module is compiled for either Python2 or Python3. You must run Quisk from the Python (2 or 3) that was used to make _quisk. If you have both Python 2 and 3 on your machine, the incorrect _quisk is being used. I guess running "quisk" or "/usr/local/bin/quisk" is not working.

While I look into this, try specifying your Python. Figure out where Quisk is installed, either where you downloaded the source, or?/usr/local/lib/python3.6/dist-packages/quisk. Then run this:

python3?
/usr/local/lib/python3.6/dist-packages/quisk

or similarly for Python2.

Jim
N2ADR


Re: Quisk Version 4.1.50 November 2019

 

Hello? Jim,

If you are runninjg Linux, "wheel" should not be necessary. It is only used on Windows.

Jim
N2ADR


Re: Quisk Version 4.1.50 November 2019

 

make quisk3 and make soapy3 work in my Ubuntu 18.04 environment (no compilation errors)

but when I launch quisk 4.1.50, I have the following error

root@on7yi-ubuntu:/opt/build/quisk-4.1.50# ./quisk
Traceback (most recent call last):
? File "./quisk", line 3, in <module>
? ? import quisk # May be quisk.py or package quisk
? File "/opt/build/quisk-4.1.50/quisk.py", line 33, in <module>
? ? import _quisk as QS
ImportError: No module named _quisk


On Fri, Nov 22, 2019 at 9:00 PM Franco Spinelli <frspin@...> wrote:
Some problems here on Ubuntu 18.04/64 bit and python 2.7 (but also python3).

After make; make soapy; python setup.py build and sudo python setup.py install commands I get in /usr/local/bin a file called quisk for quisk execution.
Starting this command I get an exception:

? File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 480, in load_entry_point
??? return get_distribution(dist).load_entry_point(group, name)
? File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2693, in load_entry_point
??? return ep.load()
? File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2324, in load
??? return self.resolve()
? File "/usr/lib/python2.7/dist-packages/pkg_resources/__init__.py", line 2330, in resolve
??? module = __import__(self.module_name, fromlist=['__name__'], level=0)
ImportError: No module named quisk

Running python quisk.py from source directory work correctly

Version 4.1.48, which use same startup program, work correctly

Same error running code in interactive python session.

Regards

Franco Spinelli
IW2DHW


Re: Quisk Version 4.1.50 November 2019

David Turner
 

I am sure someone will think of an answer, but in the mean time.

In a Terminal enter. ? cd /usr/local/lib/python3.6/dist-packages/quisk
then enter. python3 quisk.py
Then the program should run ok.

Dave.
g0vvf



On Saturday, 23 November 2019, 02:35:50 GMT, Jim Ancona N1ADJ <jim@...> wrote:


I'm experiencing something similar to Pascal. The problem started when I tried to install the Python3 version of Quisk, but has persisted after I uninstalled all the Python3-related packages and tried to reinstall Quisk with Python2.7.

Here's what I get:
$ sudo -H python2 -m pip install --upgrade quisk
Collecting quisk
? Downloading (3.0MB)
? ? 100% |¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€| 3.0MB 365kB/s
Building wheels for collected packages: quisk
? Running setup.py bdist_wheel for quisk ... done
? Stored in directory: /root/.cache/pip/wheels/ee/04/a0/2caa8a91551e0067f0e231448651489c7b2276d71028d0ef0e
Successfully built quisk
Installing collected packages: quisk
Successfully installed quisk-4.1.50
$ quisk
Traceback (most recent call last):
? File "/usr/local/bin/quisk", line 7, in <module>
? ? from quisk.quisk import main
? File "/usr/local/lib/python2.7/dist-packages/quisk/quisk.py", line 33, in <module>
? ? import _quisk as QS
ImportError: No module named _quisk

This is on Linux Mint 19.2, based on Ubuntu 18.04. I'm not a Python expert, so if there's some obvious thing to do, please feel free to tell me about it!

Thanks,

Jim N1ADJ

On Fri, Nov 22, 2019 at 6:16 PM Pascal Vilain <pascal@...> wrote:
Same issue with 4.1.50 ...I have lost quisk and cannot recover it...

pascal@hp-260-g2-pv:~$ quisk
Traceback (most recent call last):
? File "/usr/local/bin/quisk", line 7, in <module>
??? from quisk.quisk import main
? File "/usr/local/lib/python2.7/dist-packages/quisk/quisk.py", line 33, in <module>
??? import _quisk as QS
ImportError: No module named _quisk

pascal@hp-260-g2-pv:~$ sudo python2 -m pip install --upgrade quisk
The directory '/home/pascal/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
,,,The directory '/home/pascal/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Requirement already up-to-date: quisk in /usr/local/lib/python2.7/dist-packages

??

Pascal


Re: Quisk Version 4.1.50 November 2019

 

I'm experiencing something similar to Pascal. The problem started when I tried to install the Python3 version of Quisk, but has persisted after I uninstalled all the Python3-related packages and tried to reinstall Quisk with Python2.7.

Here's what I get:
$ sudo -H python2 -m pip install --upgrade quisk
Collecting quisk
? Downloading (3.0MB)
? ? 100% |¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€¨€| 3.0MB 365kB/s
Building wheels for collected packages: quisk
? Running setup.py bdist_wheel for quisk ... done
? Stored in directory: /root/.cache/pip/wheels/ee/04/a0/2caa8a91551e0067f0e231448651489c7b2276d71028d0ef0e
Successfully built quisk
Installing collected packages: quisk
Successfully installed quisk-4.1.50
$ quisk
Traceback (most recent call last):
? File "/usr/local/bin/quisk", line 7, in <module>
? ? from quisk.quisk import main
? File "/usr/local/lib/python2.7/dist-packages/quisk/quisk.py", line 33, in <module>
? ? import _quisk as QS
ImportError: No module named _quisk

This is on Linux Mint 19.2, based on Ubuntu 18.04. I'm not a Python expert, so if there's some obvious thing to do, please feel free to tell me about it!

Thanks,

Jim N1ADJ

On Fri, Nov 22, 2019 at 6:16 PM Pascal Vilain <pascal@...> wrote:
Same issue with 4.1.50 ...I have lost quisk and cannot recover it...

pascal@hp-260-g2-pv:~$ quisk
Traceback (most recent call last):
? File "/usr/local/bin/quisk", line 7, in <module>
??? from quisk.quisk import main
? File "/usr/local/lib/python2.7/dist-packages/quisk/quisk.py", line 33, in <module>
??? import _quisk as QS
ImportError: No module named _quisk

pascal@hp-260-g2-pv:~$ sudo python2 -m pip install --upgrade quisk
The directory '/home/pascal/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
,,,The directory '/home/pascal/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Requirement already up-to-date: quisk in /usr/local/lib/python2.7/dist-packages

??

Pascal