下载
如果是Windows,可以下载 Active Perl 安装同VScode 其实就是下面这段代码执行即安装。
powershell -Command "& $([scriptblock]::Create((New-Object Net.WebClient).DownloadString('https://platform.activestate.com/dl/cli/AS653/install.ps1'))) -activate-default 用户名/Perl-5.32"
注:以上的用户名改为你自己的。
检查Perl是否安装成功
在命令提示符中输入 Perl -v 查看Perl版本号及相关信息
配置VScode
- vscode设置perl.exe地址,“perl.perlCmd”: “你本地perl的地址”
- 打开VScode ,在Extensions 中输入 Perl,选第一个,安装。
配置vscode启动调试文件launch.json
{
"version": "0.2.0",
"configurations": [
{
"type": "perl",
"request": "launch",
"name": "Perl-Debug local",
"program": "${file}",
"exec": "perl",
"execArgs": [],
"root": "${workspaceRoot}/",
"internalConsoleOptions": "openOnSessionStart",
"windows": {
"args": []
},
"inc": [],
"args": [],
"env": {},
"stopOnEntry": true
},
{
"type": "perl",
"request": "launch",
"name": "Perl-Debug remote",
"program": "${workspaceFolder}/${relativeFile}",
"root": "${workspaceRoot}/",
"stopOnEntry": true,
"port": 5000
}
]
}
启动调试,运行.pl 文件
显示变量
完成以上,Vscode 上已经可以运行Perl程序了,但是调试的时候,左侧的视窗无法显示变量。
这是因为我们还需要在Perl 中安装一个模块PadWalker
如果是Windows 系统可以使用命令
bash c:> cpan PadWalker 如果之前安装好了Active Perl,也可以直接使用ppm命令
bash c:> ppm install PadWalker 如果是OSX系统,可以使用cpanm
|