httprepl is installed but httprepl command not found Windows - asp.net-web-api

I ensured the package was installed
dotnet tool list -g
Package Id Version Commands
----------------------------------------------------
microsoft.dotnet-httprepl 6.0.0 httprepl
when I run the command httprepl I get the message
'httprepl' is not recognized as an internal or external command,
operable program or batch file.

Related

after Hadoop installation why cmd shows c:\program not recognized in an internal and external command when I want to see Hadoop version

When I run commands in cmd then an error shows that is 'C:\Program' is not recognized as an internal or external command, operable program or batch file.
Hadoop prefers you don't have spaces in its installation paths.
That being said, Hadoop is not a "Windows program"; it doesn't need to be in Program Files folder.
Regarding the error, you additionally need to edit your OS PATH environment variable to include %HADOOP_HOME%\bin, as well as define HADOOP_HOME.
In addition, Hadoop does not support Java versions over 11. With 11 only being supported in version 3.3.4.

gradle' is not recognized as an internal or external command, operable program or batch file

I install gradle and set PATH variable.
When I change folder in cmd on right and wrote
gradle -v
I got from cmd the request:
'gradle' is not recognized as an internal or external command,
operable program or batch file. *
How to fix it?
I found solution the problem.
In my case solution is uninstall antivirus and reinstall program and again install antivirus. (I using Comodo antivirus)

./mach bootstrap is not working in windows 10 cmd

I am building firefox on windows 10 and i have follow and the steps mentioned in this link
Once I checkout the firefox source code using this cmd
hg clone https://hg.mozilla.org/mozilla-central
and after that I type "./mach bootstrap" to catch all the dependencies
It is giving me below error
'.' is not recognized as an internal or external command, operable
program or batch file.
I have install all the software and libraries but still it is not working.
Is there anything i am missing and doing something wrong?

'svn' is not recognized as an internal or external command, operable program or batch file

example for download project
cd xampp\htdocs>svn co http://svn.doctrine-project.org/trunk doctrine
then error
'svn' is not recognized as an internal or external command,
operable program or batch file.
In case if someone is looking to install Command line client tools on top of already installed Tortoise, you can do this.
Download the latest from website (https://tortoisesvn.net/downloads.html) and open the exe.
When you reach this screen (see below), untick all, but `command line client tools'.
Press "Next" and continue the installation.
This will only install command line client tools on top of your existing Tortoise.
Hope this will help someone. Cheers!
Subversion is not installed by default on Windows. You have to install it to be able to use 'svn' command lines. Packages can be found here: http://subversion.apache.org/packages.html
You can download TortoiseSVN and while installing choose CLI package. Once after installation add the folder location to Environment Variables->System variables

How do I build boost 1.55 from the command line with mingw?

Note: I have seen this SO question, but I do not think the question is clear and the solutions do not cover the issue I have run into.
I downloaded boost 1.55 from sourceforge and unzipped it to C:\My Programs\ directory. When I tried to run the bootstrap.bat file (REF) I got the error:
C:\Users\pollexb\git_repositories\modular-boost>bootstrap.bat
Building Boost.Build engine
'"VCVARS32.BAT"' is not recognized as an internal or external command
operable program or batch file.
'"VCVARS32.BAT"' is not recognized as an internal or external command
operable program or batch file.
'"VCVARS32.BAT"' is not recognized as an internal or external command
operable program or batch file.
'"VCVARS32.BAT"' is not recognized as an internal or external command
operable program or batch file.
'cl' is not recognized as an internal or external command,
operable program or batch file.
Failed to build Boost.Build engine.
Please consult bootstrap.log for furter diagnostics.
You can try to obtain a prebuilt binary from
http://sf.net/project/showfiles.php?group_id=7586&package_id=72941
Also, you can file an issue at http://svn.boost.org
Please attach bootstrap.log in that case.
What is the problem & how do I solve it?
Boost 1.55 seems to have an issue with bootstrap.bat working (REF). The easiest solution would be to download & install Boost 1.54.
I'm answering this question 2 years later because I had the same issue with boost 1.60.
It looks like you don't have Visual Studio installed. Apparently bootstrap.bat assumes you have that as default, otherwise you should indicate the compiler toolchain you want to use. As an example I had to enter "boostrap.bat mingw".

Resources