-
Notifications
You must be signed in to change notification settings - Fork 0
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
Installation does not proceed as explained in the documentation #1
Comments
One additional remark to the classifiers. I think this line Line 13 in 237c244
should state that the software is build for windows (regarding the windows specific code and if conditions and the statement in the documentation that it is build for windows). This could later be extended when the software is ported and tested on other systems, too. |
Hi @domna I have implemented a fix for this issue by:
Line 13 in 15a22af
Lines 71 to 81 in 15a22af
Thanks for all your comment. Let me know if there is any more modifications needed. Best regards, |
Hey @CharlieGPA40, thank you for the changes. I'll check them soon when I have more time, just one small quick remark to point 5: In my view the |
When I follow the install instructions in the README the software is not able to run on my system. I had to do this additional steps to actual get the gui:
pip install -r QuDAP/requirements.txt
(because python tries to importPySide
ininstructions.py
before the os call forpip install
is run)cd
into theQuDAP
directorypyvisa-py
version == "11"
hereQuDAP/QuDAP/GUI/VSM/VSM.py
Line 18 in 237c244
While I could mediate these issues which can easily be fixed, I additionally think that the dependency management should be handled differently.
pip install
should not be called on every start, because this could impact the software functionality in unforseen ways when packages are updated/changed. This would not be transparent to the user. Additonally, it is an unecesarry start overhead.pyproject.toml
pip-compile
oruv
. Maybe the hatchling build system has something similar, however, I'm not experienced with it so I can only recommend the other tools.The text was updated successfully, but these errors were encountered: