'perl' is not recognized as an internal or external command - perl

I have found old posts regarding this issue, but I haven't found a successful answer,that's why I decided to post again.
I have installed Strawberry-perl.
I have all the folders and subfolders that it's supposed to have:
C:\Strawberry
C:\Strawberry\c
C:\Strawberry\cpan
C:\Strawberry\licenses
C:\Strawberry\perl
C:\Strawberry\win32
C:\Strawberry\perl\bin is included in the path environment variable (pointing the folder where I have the perl.exe file
However, I still get the message
'perl' is not recognized as an internal or external command, operable program or batch file
Any suggestion?
Thanks

Related

Installing files via Composer via Command Line | "'$' is not recognized as an internal or external command, operable program or batch file."

So I am attempting to install some files from Send Grid via Composer usind the CommandLine.
I am following a tutorial with the link here https://www.youtube.com/watch?v=fEobqi3N7zw
The guy in the video has no problem using Composer via the Command Line in the Windows Command Prompt, but when I input the command $ go_www, my PC whines and stamps it's feet, giving me the following line:
'$' is not recognized as an internal or external command,
operable program or batch file.
In a nutshell, why?
System Information:
Windows 10 64x
I have looked at other posts on here, to no avail, I have tried opening the Command Line too as System Administrator, but to avail. I have tried restarting the system, to no avail, I can confirmed I have composer installed into the correct directory, to no avail .
$ in a shell indicates the shell is not owned by a superuser, it is not part of the command. Try running go_www. Also, the video you linked seems to be using a bash shell, whereas you appear to be running a Windows command prompt from the error message you included in your question, which might be a problem too.
In any case, go_www is an alias the video author uses to quickly navigate to the folder of interest. Try manually navigating there using cd.

'sed' is not recognized as an internal or external command- ETHERMINT

Im having trouble following the tutorial for the node start on Ethermint.
After passing in the cmd: make install, i get the following error.
In my work computer, is not working, but in my personal computer is ?
What seems to be the issue ?
'sed' is not recognized as an internal or external command,
operable program or batch file.
process_begin: CreateProcess(NULL, which docker, ...) failed.
Makefile:29: pipe: Bad file descriptor
Makefile:187: *** missing separator. Stop.
I tried to install a windows version of "sed" but cant find a proper version.

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

I have read the documentation and followed the steps to run mongodump on windows machine, but still getting this error.
I tried to set the path using this command set path="C:\Program Files\MongoDB\Server\4.4\bin" and added the path in environmental variables but still getting the error. What should I do ?

EVERYTHING is not recognized as an internal or external command, operable program or batch file IF ".EXE" SUFFIX IS MISSING

this problem might not be the problem as u may expect and I'm using Windows 7. I've guaranteed that I have put the path to EVERY SINGLE EXECUTABLE FILE I need in the %PATH%.
Yet I still can't run them nice and smooth by simply type there file name.
For instance, I've already setup my python correctly, now I open my cmd in a totally irrelevant directory, says U:\\
U:\>python
'python' is not recognized as an internal or external command,
operable program or batch file.
U:\>python.exe
Python 3.7.5 on win32
Type "help", "copyright", "credits" or "license" for more information.
And also, 'ipconfig' has the completely same issue as above:
U:\>ipconfig
'ipconfig' is not recognized as an internal or external command,
operable program or batch file.
U:\>ipconfig.exe
Windows IP Configuration
Ethernet adapter Local Area Connection: .......
What!!! How come I MUST type the extension ".exe" to make this happen? Does anyone know how to fix this?
Something messed up the PATHEXT variable on your system. This variable tells windows how to handle files with certain extensions. Or in other words, if you try to execute a file (without extension), Windows takes that variable to try to execute it with the extensions therein (in that order - so if there is a file.bat and another one file.exe and you execute just file, Windows looks into PATHEXT and then executes file.exe, because .EXE is listed before .BAT (short form - actually, also the PATH variable is involved).
On a fresh Win10, PATHEXT has the following content:
.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
Note, the content of PATHEXT depends on what was installed on your Windows (in your case, it's supposed to be at least:
.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PY;.PYW
(maybe more - as I said, it depends on your configuration)
typing "start" before the program name.
If this does not work, try using the "cd" command to mount itself at the place of the program you would like to run

Open a site directly in FileZilla using the command line

I'm trying to open a site I created in FileZilla using the command line. This is what have in my .bat file:
#echo off
filezilla.exe -c "0/mysitename"
pause
I'm getting the following error. How can I fix it?
'filezilla' is not recognized as an internal or external command,
operable program or batch file.
In order for an executable to be executed by name, the filezilla.exe file needs to be included on the path. This can be accomplished by
set path=%path%;the\directory\where\filezilla\resides
OR, you can use
the\directory\where\filezilla\resides\filezilla.exe -c "0/mysitename"