mirror of
https://github.com/XuehaiPan/nvitop.git
synced 2026-05-15 14:15:55 -06:00
[GH-ISSUE #143] [Question] nvitop cannot be installed by uvx on Windows with Python 3.13 #91
Labels
No labels
api
bug
bug
cli / tui
dependencies
documentation
documentation
documentation
duplicate
enhancement
exporter
invalid
pull-request
pynvml
question
question
upstream
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/nvitop#91
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @luyiyun on GitHub (Jan 1, 2025).
Original GitHub issue: https://github.com/XuehaiPan/nvitop/issues/143
Originally assigned to: @XuehaiPan on GitHub.
Required prerequisites
Questions
I use uvx to install the nvitop in windows(uvx nvitop or uv tool install nvitop), but it is failed. The Error message was follow:
× No solution found when resolving dependencies:
╰─▶ Because only the following versions of nvitop are available:
nvitop==0.1.0.1
nvitop==0.2.0.1
nvitop==0.2.0.2
nvitop==0.2.0.3
nvitop==0.2.1
nvitop==0.2.2
nvitop==0.2.3
nvitop==0.2.4
nvitop==0.2.4.1
nvitop==0.2.4.2
nvitop==0.2.4.3
nvitop==0.2.5
nvitop==0.2.5.1
nvitop==0.2.5.2
nvitop==0.3.0
nvitop==0.3.0.1
nvitop==0.3.0.2
nvitop==0.3.1
nvitop==0.3.2
nvitop==0.3.2.1
nvitop==0.3.3
nvitop==0.3.4
nvitop==0.3.4.1
nvitop==0.3.5.1
nvitop==0.3.5.2
nvitop==0.3.5.3
nvitop==0.3.5.4
nvitop==0.3.5.5
nvitop==0.3.5.6
nvitop==0.3.6
nvitop==0.3.6.1
nvitop==0.3.6.2
nvitop==0.4.0
nvitop==0.4.1
nvitop==0.4.2.1
nvitop==0.4.2.2
nvitop==0.4.3
nvitop==0.4.4
nvitop==0.4.4.1
nvitop==0.5.0
nvitop==0.5.1
nvitop==0.5.1.1
nvitop==0.5.1.2
nvitop==0.5.1.3
nvitop==0.5.1.4
nvitop==0.5.2
nvitop==0.5.2.1
nvitop==0.5.2.2
nvitop==0.5.3
nvitop==0.5.4
nvitop==0.5.5
nvitop==0.5.6
nvitop==0.6.0
nvitop==0.6.1
nvitop==0.6.2
nvitop==0.7.0
nvitop==0.7.1
nvitop==0.7.2
nvitop==0.7.3
nvitop==0.8.0
nvitop==0.8.1
nvitop==0.9.0
nvitop==0.10.0
nvitop==0.10.1
nvitop==0.10.2
nvitop==0.11.0
nvitop==1.0.0
nvitop==1.1.0
nvitop==1.1.1
nvitop==1.1.2
nvitop==1.2.0
nvitop==1.3.0
nvitop==1.3.1
nvitop==1.3.2
nvitop==1.4.0
and nvitop==0.1.0.1 was yanked, we can conclude that nvitop<0.2.0.1 cannot be used.
And because nvitop>=0.2.0.1,<=0.6.2 was yanked, we can conclude that nvitop>=0.2.0.1,<=0.6.2 cannot be used.
And because nvitop==0.7.0 was yanked (reason: Fixed by 0.7.1) and nvitop>=0.7.1,<=0.8.1 was yanked, we can conclude that nvitop>=0.7.1,<=0.8.1 cannot be
used. (1)
How to solve this?
@XuehaiPan commented on GitHub (Jan 1, 2025):
Hi @luyiyun, it's an upstream issue that the latest
windows-cursesdoes not have wheels for Python 3.13+. You can useuvwith Python 3.12.@luyiyun commented on GitHub (Jan 1, 2025):
Thank you.