mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-03 21:25:13 +00:00
electronize is not fount in macOS #294
Reference in New Issue
Block a user
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 @seanmars on GitHub (Apr 2, 2019).
Originally assigned to: @robertmuehsig on GitHub.
I install the cli tool with
dotnet tool install ElectronNET.CLI -gin macOS, but the commandelectronizeis not found. But it's worked on Windows.@Lu-Lucifer commented on GitHub (Apr 16, 2019):
I have the same problem.
command not found: electronize
@win32nipuh commented on GitHub (May 14, 2019):
May be the same solution as for Windows:
Rename or clone the electronize.exe to be called dotnet-electronize.exe
@brianpham93 commented on GitHub (May 23, 2019):
Any update ? I'm facing same issue also
@RockNHawk commented on GitHub (May 23, 2019):
I have the same issue On MacOS
@netpoetica commented on GitHub (May 28, 2019):
@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
sourcethat 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.