-
Notifications
You must be signed in to change notification settings - Fork 147
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
No Fequency Graphs on Ryzen 5950x #182
Comments
Same behavior with weird low reported frequencies on an Intel Core i5-1135G7. s-tui: 1.1.3 |
Thanks for opening the issue. This seems to be the same problem as #180 The change originates from a change in psutil, the fix for which should be already in the works. I suggest we wait for the psutil |
@DocMAX if you use Archlinux/Manjaro, you can try do downgrade python-psutil to 5.8.0. This resolves this issue for now and only one core showing the exact frequency:
And add
to pacman.conf under [options]. |
This can be solved by downgrading psutil to v5.8.0 . |
psutilVersion=`pip show psutil | grep 'Version' | awk -F ': ' '{print $2}'` \
&& psutilLocation=`pip show psutil | grep 'Location' | awk -F ': ' '{print $2}'`/psutil \
&& [ $psutilVersion == 5.9.0 ] \
&& sudo sed -i "/curr = cpuinfo_freqs\[i\]$/ s/$/ * 1000/" $psutilLocation/_pslinux.py or sudo sed -i "/curr = cpuinfo_freqs\[i\]$/ s/$/ * 1000/" /usr/lib/python3.10/site-packages/psutil/_pslinux.py |
In Ubuntu-based distros, this should fix, but I don't know if it has side effects:
Edit: with the release of [email protected] you can also just do |
Duplicate of #180 |
s-tui 1.1.3
The text was updated successfully, but these errors were encountered: