Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

安装不上去。 #2

Closed
MuxinLee opened this issue Apr 28, 2020 · 21 comments
Closed

安装不上去。 #2

MuxinLee opened this issue Apr 28, 2020 · 21 comments

Comments

@MuxinLee
Copy link

  • 在线安装,一直显示安装中。。。
  • 离线安装,加载报错。。。
@juzisang
Copy link
Owner

有梯子最好开启全局模式装一下...
或者你可以找到 PicGo 的目录,执行下面的命令,用淘宝的镜像安装。

npm install picgo-plugin-compress --save --registry=https://registry.npm.taobao.org

安装成功之后重启 PicGo

@MuxinLee
Copy link
Author

MuxinLee commented Apr 28, 2020 via email

@juzisang
Copy link
Owner

打开 PicGo 的目录,看看 package.jsonpicgo-plugin-compress地址指向哪里
如果指向你本地离线的包,将 picgo-plugin-compress 依赖删除,重新安装

或者你可以删掉 node_modules,整个重置一下依赖...

npm install --registry=https://registry.npm.taobao.org

@MuxinLee
Copy link
Author

感谢大佬,通过 npm install picgo-plugin-compress 方式很香。之前是用GitHub 上的离线包。貌似不是发布的版本? 所以才报错吧...

@juzisang
Copy link
Owner

juzisang commented Apr 28, 2020 via email

@inmaker
Copy link

inmaker commented Mar 30, 2021

安装不了,开代理也一样。
20210330194719

@toweringx
Copy link

安装不了,开代理也一样。
20210330194719

把命令改成npm install picgo-plugin-compress --save --ignore-scripts 即可解决。

@CmmmmmmLau
Copy link

185.199.108.133 raw.githubusercontent.com
改一下host就直接解决了

@hss01248
Copy link
Contributor

还是得给npm配代理.
搞一个梯子,然后:
npm config set proxy=http://127.0.0.1:你的梯子的代理端口
npm config set https-proxy https://127.0.0.1:你的梯子的代理端口

@AkarinLiu
Copy link

@toweringx 我也是,而且依赖Python2000
2021-08-17T05_04_44_045Z-debug.log

@xdai555
Copy link

xdai555 commented Dec 28, 2021

安装失败,提示需要 VSCode 2017环境,按照提示安装后C盘暴涨4个G,仍然不行
2021-12-28T17_44_06_075Z-debug.log 安装VS2017前的报错
2021-12-28T17_25_27_336Z-debug.log-安装完成VS 2017 后依然报错

PS: 本地还用 npm 安装了 hexo,博客相关模块都能正常安装

@left0ver
Copy link

left0ver commented Jan 5, 2022

  • 在线安装,一直显示安装中。。。
  • 离线安装,加载报错。。。

    我也是

@MurasameFan
Copy link

MurasameFan commented Jan 8, 2022

开梯子没用,放弃直接安装的方式,采用npm方式安装

我用的Mac,picgo路径如下:
/Users/cunyu/Library/Application Support/picgo(自己参照)

解决方法:
首先,cd到这个路径下
然后Mac要安装一些插件,命令如下:

brew install libtool automake autoconf nasm

这个过程可能要很久,建议开梯子或有homebrew源

下面正式开始安装

第一步:清理缓存

npm cache clean --force

第二步:删除文件夹

把整个node_modules都删除

第三步:install一下

npm install picgo-plugin-compress --save --ignore-scripts --registry=https://registry.npm.taobao.org

第四步:

npm install --registry=https://registry.npm.taobao.org

最终就安装完成了

00安装成功

@xasxcy
Copy link

xasxcy commented Feb 6, 2022

开梯子没用,放弃直接安装的方式,采用npm方式安装

我用的Mac,picgo路径如下: /Users/cunyu/Library/Application Support/picgo(自己参照)

解决方法: 首先,cd到这个路径下 然后Mac要安装一些插件,命令如下:

brew install libtool automake autoconf nasm

这个过程可能要很久,建议开梯子或有homebrew源

下面正式开始安装

第一步:清理缓存

npm cache clean --force

第二步:删除文件夹

把整个node_modules都删除

第三步:install一下

npm install picgo-plugin-compress --save --ignore-scripts --registry=https://registry.npm.taobao.org

第四步:

npm install --registry=https://registry.npm.taobao.org

最终就安装完成了

00安装成功

用这种方式安装成功了,没用到第四步。
在命令行找不到目录的记得对中间的空格用反斜杠转义一下。

@feutis
Copy link

feutis commented Feb 26, 2022

我用

npm install picgo-plugin-compress --save --registry=https://registry.npm.taobao.org

也无法安装
但是采用

cnpm install picgo-plugin-compress --save --registry=https://registry.npm.taobao.org

后安装成功,再在picgo的插件设置里把安装的picgo-plugin-compress加进来选择启用就行了。

@AirMax121
Copy link

各位大佬 好不容易弄成功,已上传就闪退咋解

@engvuchen
Copy link

window10, node v18,安装失败,由 cwebp-bin 引起的;
即使 npm --npm install picgo-plugin-compress --save --ignore-scripts,包也只是下载了但因为没有运行脚本,功能也不可用;

@engvuchen
Copy link

window10 ,node v18,picgo 2.3.0 安装成功:

  1. 打开 picgo 的安装目录。例 C:\Users<用户名>\AppData\Roaming\picgo
  2. 打开根目录下的 package.json,改动 dependencies
{
  "dependencies": {
    "picgo-plugin-compress": "^1.4.0",
  }
}
  1. 使用 cmd / powershell (❗不要用 terminal 套壳连接),在根目录下执行 npm i --registry=https://registry.npm.taobao.org

@engvuchen
Copy link

总结在此文章

@wayss000
Copy link

🤝🏻 安装上去,但是加载不出来 ,会报上述图片中的错误 Plugin picgo-plugin-compress Load Error

On Apr 28, 2020, 20:08 +0800, 橘子 @.***>, wrote: 有梯子最好开启全局模式装一下... 或者你可以找到 PicGo 的目录,执行下面的命令,用淘宝的镜像安装。 npm install picgo-plugin-compress --save --registry=https://registry.npm.taobao.org 安装成功之后重启 PicGo — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe.

同样的问题,请问您解决了吗?

@liujunfeng1998
Copy link

各位大佬 好不容易弄成功,已上传就闪退咋解

同问

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests