electronize is not fount in macOS
See original GitHub issueI install the cli tool with dotnet tool install ElectronNET.CLI -g
in macOS, but the command electronize
is not found. But it’s worked on Windows.
> dotnet tool list -g
Package Id Version Commands
------------------------------------------------------------------------------
dotnet-aspnet-codegenerator 2.2.2 dotnet-aspnet-codegenerator
electronnet.cli 0.0.11 electronize
microsoft.web.librarymanager.cli 1.0.172 libman
Issue Analytics
- State:
- Created 4 years ago
- Reactions:3
- Comments:5
Top Results From Across the Web
Mac OSX Terminal not Recognizing installed CLI Tool
I guess it's something with your path&zsh, if you try: ~/.dotnet/tools/electronize start. is that work for you?
Read more >ElectronNET.CLI 23.6.1
Building cross platform electron based desktop apps with .NET Core and ASP.NET Core. This package contains the dotnet tooling to electronize your application....
Read more >Command Line Interface (CLI)
Without target configuration, electron-builder builds Electron app for current platform and current architecture using default target. macOS - DMG and ZIP for ...
Read more >Building Cross-Platform Desktop Apps with Electron.NET
This article provides a walkthrough for developing and deploying an application with Electron.NET. Topics covered include:.
Read more >Troubleshoot .NET tool usage issues
Discover the common issues when running .NET tools and possible solutions.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@seanmars @LuciferJun1227 @phamquocthang @RockNHawk You must add dotnet tools to your $PATH. Most likely, you are using Bash, so you will have a ~/.bashrc or ~/.bash_profile that gets loaded in your terminal.
In your file, you must add
and then you must either
source
that file (egsource ~/.bash_profile
) or create a new terminal window/tab.I have added this to the bottom of my .zshrc, as I am using zshell instead of bash.
Any update ? I’m facing same issue also