You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After installation, verify that `uv` and `uvx` are available:
58
+
59
+
```bash
60
+
# Check uv version
61
+
uv --version
62
+
63
+
# Check uvx version
64
+
uvx --version
65
+
```
66
+
67
+
Both commands should return version information. If you get "command not found" errors, you may need to restart your terminal or add the installation directory to your PATH.
68
+
69
+
### Troubleshooting
70
+
71
+
If you encounter issues:
72
+
1. Restart your terminal after installation
73
+
2. Check that the installation directory is in your PATH
74
+
3. On macOS/Linux, the default installation adds uv to `~/.cargo/bin/`
75
+
4. Refer to the [official uv documentation](https://docs.astral.sh/uv/) for more detailed installation instructions
0 commit comments