-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't run with python #7
Comments
Same result with pyenv virtualenv using 3.10.9:
|
I'd say, try running If it was with exe, then the issue is most prolly with firewall, as solved in #6 |
I'm sorry but argument run it with IDE is... How? If I set my VSCode to run I like python module, it will end up with the same error. The same if I set it to run the python file. This is a different problem in my opinion. |
Here are few steps.
Please try these and tell me the results. I've suggest downloading the latest code too in case you're in an older version. Thank You |
Installation is OK now. No requirements.txt bugs. but the start of the program still results in |
Damn. I still can't figure out what's the problem here lol. It's running well in my PC tho. |
Did you try what we had? |
I'll check it right now and update the progress. Thank you |
Funnily enough, I'm getting an entirely different error now.
But mine works when trying to run the |
Interesting. I don't know if PyCharm has anything automatic. Or if you have more pip packages (global) installed and it's conflicting with the virtual env version. |
Hey! I have a new fix (this might be trial and error so sorry for that). Try replacing the last section of the QApplication.setHighDpiScaleFactorRoundingPolicy(
Qt.HighDpiScaleFactorRoundingPolicy.PassThrough)
qdarktheme.enable_hi_dpi()
app = QApplication(sys.argv)
w = Window()
qdarktheme.setup_theme("dark", custom_colors={"primary": theme_color})
w.show()
app.exec() to: QApplication.setHighDpiScaleFactorRoundingPolicy(
Qt.HighDpiScaleFactorRoundingPolicy.PassThrough)
qdarktheme.enable_hi_dpi()
app = QApplication(sys.argv)
w = Window()
qdarktheme.setup_theme("dark", custom_colors={"primary": theme_color})
w.show()
sys.exit(app.exec()) I guess it might be the missing of I've updating the repo code anyways even if this's not actually a fix for the issue. |
Created
.venv
withpython3.11
Tried to install
requirements.txt
Removed
==<version>
fromrequirements.txt
Installed
requirements.txt
Run the script
Issue 1:
python -m main.py
in docu won't run the app.Issue 2:
requirements.txt
conflictsIssue 3: can't run, not sure why
The text was updated successfully, but these errors were encountered: