'perl' 未被识别为外部或内部命令 *帮助配置 strawberry perl!*
'perl' is not recognized as an external or internal command *Help configuring strawberry perl!*
我正在自学 Perl,并且在我的 Windows 8 64 位系统上安装了 Strawberry。 Strawberry 命令行似乎工作正常,我在 C 盘的 Strawberry 文件夹中创建了一个新文件夹,用于放置我的练习文件(在 Notepad++ 中创建)。
我切换到包含 .pl 文件的目录(在我的例子中是 C:\Strawberry\programs),并尝试运行一个程序,例如。 perl practice1.pl。当我这样做时,它说 'perl' 不被识别为外部或内部命令。不太确定我做错了什么!
请设置路径,
Path :- Path 是 OS 用来查找可执行文件的 OS 环境变量,你可以找到如何在 google 上轻松设置路径
如果您不想设置路径,那么还有另一种解决方案:-
考虑一下你的 perl 安装在这个位置:-
c:\perl\perl.exe
并且您的 .pl 文件位于 "Strawberry" 文件夹中,该文件夹位于 c 盘 ex:-
c:\Strawberry\perl_script1.pl
c:\Strawberry\perl_script2.pl 等
然后打开 cmd 并导航到 perl 目录,
c:\perl\
使用perl.exe并给出这些文件的完整路径作为参数
所以对于 perl_script1.pl 它将是
c:\perl\perl c:\Strawberry\perl_script1.pl // and same for other script also
谢谢:)
我正在自学 Perl,并且在我的 Windows 8 64 位系统上安装了 Strawberry。 Strawberry 命令行似乎工作正常,我在 C 盘的 Strawberry 文件夹中创建了一个新文件夹,用于放置我的练习文件(在 Notepad++ 中创建)。
我切换到包含 .pl 文件的目录(在我的例子中是 C:\Strawberry\programs),并尝试运行一个程序,例如。 perl practice1.pl。当我这样做时,它说 'perl' 不被识别为外部或内部命令。不太确定我做错了什么!
请设置路径,
Path :- Path 是 OS 用来查找可执行文件的 OS 环境变量,你可以找到如何在 google 上轻松设置路径
如果您不想设置路径,那么还有另一种解决方案:-
考虑一下你的 perl 安装在这个位置:-
c:\perl\perl.exe
并且您的 .pl 文件位于 "Strawberry" 文件夹中,该文件夹位于 c 盘 ex:-
c:\Strawberry\perl_script1.pl c:\Strawberry\perl_script2.pl 等
然后打开 cmd 并导航到 perl 目录,
c:\perl\
使用perl.exe并给出这些文件的完整路径作为参数
所以对于 perl_script1.pl 它将是
c:\perl\perl c:\Strawberry\perl_script1.pl // and same for other script also
谢谢:)