我按照 blog post 只需要两步就可以运行 scriptcs。基本上,我是这样做的:

@powershell -NoProfile -ExecutionPolicy Unrestricted -Command "iex ((New-Object Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin

然后在执行此操作时出现错误:
cinst scriptcs



这在另一台机器上工作,但在我当前的笔记本电脑上失败了。知道我做错了什么吗?

编辑

根据 Damian 的回答,下面,我只需要删除 NuGet 缓存的内容,位于此处:

最佳答案

Chocolatey GitHub 存储库中的 This bug 建议您需要清除 NuGet 缓存 ( %LocalAppData%\NuGet\Cache ),这应该会自行解决。

关于jquery - scriptcs - 无法读取包,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18661114/

10-12 00:05