After Installing and Importing, Out-ConsoleGridView Fails
adamhill opened this issue · 2 comments
adamhill commented
Prerequisites
- Write a descriptive title.
- Make sure you are able to repro it on the latest version
- Search the existing issues.
Steps to reproduce
After Installing and Importing Graphical tools, Out-ConsoleGridview cannot be found.
Expected behavior
A ConsoleGridview with PS output in it like the demo video.
Am I missing something?
Other PS Modules are working fine
Actual behavior
An error.
Error details
No response
Environment data
macOS Ventura 13.6
iTerm2
Version
0.2.0
Visuals
tig commented
Out-ConsoleGridView
is not part of Microsoft.PowerShell.GraphicalTools
.
It is part of Microsoft.PowerShell.ConsoleGuiTools
.
The README is clear on this, no?
Try this:
install-module Microsoft.PowerShell.ConsoleGuiTools -Repository PSGallery -Verbose
import-module Microsoft.PowerShell.ConsoleGuiTools -Verbose
adamhill commented
Wow. I honestly don't know how I got these projects mixed up... I guess being a Tab hobo has its issues.
Thanks. Works as expected.