-
Notifications
You must be signed in to change notification settings - Fork 1
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
Fix dependency #63
Fix dependency #63
Conversation
snapcraft.yaml
Outdated
./scripts/install/linux_runtime_dependencies.sh | ||
pip3 install --no-input aqtinstall | ||
export PATH="$PATH:$HOME/.local/bin" | ||
sudo apt update | ||
sudo apt install -y lsb-release python3-distro | ||
sudo apt install python3-distro | ||
pip3 install distro |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
./scripts/install/linux_runtime_dependencies.sh | |
pip3 install --no-input aqtinstall | |
export PATH="$PATH:$HOME/.local/bin" | |
sudo apt update | |
sudo apt install -y lsb-release python3-distro | |
sudo apt install python3-distro | |
pip3 install distro | |
./scripts/install/linux_runtime_dependencies.sh | |
pip3 install --no-input aqtinstall | |
sudo apt update | |
sudo apt install -y lsb-release python3-distro | |
sudo apt install python3-distro | |
pip3 install distro |
@MNikoliCC Can we check if these dependencies are necessary? For example, lsb-release
was present, but the paths were not properly configured.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I reviewed the dependencies and removed the unnecessary ones, including lsb-release
. It should be fine now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
This PR addresses issue #6729 by resolving the identified dependency problem and handling subsequent issues that arise.