You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I just had to start with a fresh install of Anaconda and I found that Pyfda failed with the Pyqt not found issue. However I found an easy work around.
The method that failed was-
Created Pyfda environment using Anaconda Navigator Gui. This forces you to choose a version of python to preinstall and defaults to 3.12.9
Then I used the command line as per your readme- conda install --channel=conda-forge pyfda
Pyfdax won't run.
Traceback (most recent call last):
File "C:\ProgramData\anaconda3\envs\pyfda_bad\Scripts\pyfdax-script.py", line 5, in
from pyfda.pyfdax import main
File "C:\ProgramData\anaconda3\envs\pyfda_bad\Lib\site-packages\pyfda\pyfdax.py", line 23, in
import pyfda.pyfda_rc as rc
File "C:\ProgramData\anaconda3\envs\pyfda_bad\Lib\site-packages\pyfda\pyfda_rc.py", line 19, in
from pyfda import qrc_resources # contains all icons
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\ProgramData\anaconda3\envs\pyfda_bad\Lib\site-packages\pyfda\qrc_resources.py", line 9, in
from PyQt5 import QtCore
ModuleNotFoundError: No module named 'PyQt5'
Thanks for reporting the issue, I'll add your workaround to the installation description. I will enable different Qt versions with qtpy in the future, but this is a major rework ...
Hello, I just had to start with a fresh install of Anaconda and I found that Pyfda failed with the Pyqt not found issue. However I found an easy work around.
The method that failed was-
Created Pyfda environment using Anaconda Navigator Gui. This forces you to choose a version of python to preinstall and defaults to 3.12.9
Then I used the command line as per your readme-
conda install --channel=conda-forge pyfda
Pyfdax won't run.
conda list qt
gives the following
If however the pyfda environment is created from a terminal window using the command line interface then everything is okay-
conda create --name pyfda
conda install --channel=conda-forge pyfda
At this stage pyfdax runs fine.
For information the following libraries are present when the environment is created like this
The text was updated successfully, but these errors were encountered: