-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
Install problem on Windows Python 3.11 #5
Comments
Fixed by But then when running as described in
Fixed by
Fixed by adding But then another problem. Not sure how to continue.
|
The shiboken error is a known PySide6 glitch. I recommend uninstalling PySide6, shiboken, etc and then re-installing them. This has existed since PySide6 days sadly. I'd try to build future apps using maybe PyQt6. Also, I'd recommend uninstalling shiboken and downloading shiboken 6.3.0 version as I read some articles on how their issue got fixed. pip install shiboken6==6.3.0 Ref: marcelotduarte/cx_Freeze#665 , ImportError with PySide6/shiboken6 Thanks |
I might migrate this entire app to PyQt6 since PySide6 has a lot of issues which the devs are just ignoring. |
@rohankishore |
Degrading to python3.10 and running python -m pip install -U PySide6 shiboken6==6.3.0 PyQt5 solved a few turmoils.
So I installed one lib next to another. Because I was able to install from I had to do 2 things.
This installed (I hope) all missing libraries. Secondly, if I want to run the program from the root directory with
Now it finally does something.
|
Download the codes and try again. I've migrated to pyqt6. Also, download pyqt fluent widgets like this (after uninstalling existing one):
|
Please specify which Python version should I use # with python3.11 as default
python -m venv .venv
.venv/scripts/activate
python -m pip install -U pip
python -m pip install -r requirements.txt
INFO: pip is looking at multiple versions of fastapi to determine which version is compatible with other requirements. This could take a while.
ERROR: Cannot install -r .\requirements.txt (line 2) and starlette==0.37.1 because these package versions have conflicting dependencies.
The conflict is caused by:
The user requested starlette==0.37.1
fastapi 0.109.2 depends on starlette<0.37.0 and >=0.36.3 |
Will do it. I have no issues running it on my pc, so does a lot of others. I used python 3.11 |
I've removed all
Edited the neither Ends with this message.
|
Did you just try running the main.py via any ide? Maybe some python parsing issues? |
No, everything through windows terminal. How do you run it? Because your Readme is just not working. You can't run module with .py extension. |
Try it with any ide. It should work that way maybe. |
I've activated venv and tried install from requirements.txt
The text was updated successfully, but these errors were encountered: