我正在尝试使用以下命令安装此https://github.com/VadimDez/ngx-order-pipe
npm install ngx-order-pipe --save
但我得到了一个
ENOENT: no such file or directory, open 'C:\Users\<directoryName>\package.json'当我清楚地知道它的时候
C:\Users\<directoryName>\Source\Repos\July17\DDE\Web\package.json所以我的问题是,我如何告诉/指向NPM到我现有的package.json文件?
发布于 2017-08-17 21:34:54
ceejayoz的回答是我所需要的,因为我不知道我可以使用CMD行作为Package Manager控制台。
所以为了回答,以防万一,我做了一个
cd C:\Users\<directoryName>\Source\Repos\July17\DDE\Web在Package Manager控制台上。
https://stackoverflow.com/questions/45666265
复制相似问题