From e05192ae19aa4861d8dcca3a34408642b8944b70 Mon Sep 17 00:00:00 2001 From: EddyAlleman <979361+EddyAlleman@users.noreply.github.com> Date: Sun, 12 Sep 2021 08:34:46 +0200 Subject: [PATCH] installation instruction not working anymore In VS Code: And type in the terminal: PS C:\Users\Eddy> dotnet install -g docify gives error: Could not execute because the specified command or file was not found. Possible reasons for this include: * You misspelled a built-in dotnet command. * You intended to execute a .NET program, but dotnet-install does not exist. * You intended to run a global tool, but a dotnet-prefixed executable with this name could not be found on the PATH. Solution: add tool keyword dotnet tool install -g docify You can invoke the tool using the following command: docify Tool 'docify' (version '0.6.3') was successfully installed. --- docs/_content/getting-started/index.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/_content/getting-started/index.md b/docs/_content/getting-started/index.md index a616c14..0f5e4de 100644 --- a/docs/_content/getting-started/index.md +++ b/docs/_content/getting-started/index.md @@ -12,7 +12,8 @@ Docify is available as [.NET Core Global Tool](https://docs.microsoft.com/en-us/ Docify can be installed by running the following command: ~~~ -> dotnet install -g docify +> dotnet tool install -g docify + ~~~ To update to newer version run @@ -150,4 +151,4 @@ Hello World from [Docify](https://docify.net)!
Hello World from Docify!
~~~ -Follow this user guide to learn more features of Docify which allows you to create websites for your blog or technical documentation. This help documentation itself is generated by Docify. You can explore the source code for documentation [here](https://github.com/xarial/docify/tree/master/docs) \ No newline at end of file +Follow this user guide to learn more features of Docify which allows you to create websites for your blog or technical documentation. This help documentation itself is generated by Docify. You can explore the source code for documentation [here](https://github.com/xarial/docify/tree/master/docs)