Fork me on GitHub

npm或者yarn安装sharp太慢、失败等问题

前言:项目安装sharp依赖时经常由于网络原因或者其他原因安装失败,在网上寻找许多解决方法均无法生效,自己查找相关资料后找到了sharp的镜像地址,随后问题得以解决。

一、解决安装sharp太慢或者失败的问题

解决方法

  1. 设置sharp的镜像地址
  • 设置 sharp_binary_host镜像地址
    yarn config set sharp_binary_host "https://npm.taobao.org/mirrors/sharp"
  • 设置 sharp_libvips_binary_host镜像地址
    yarn config set sharp_libvips_binary_host "https://npm.taobao.org/mirrors/sharp-libvips"
  1. 全局安装sharp即可
    image

二、可以用于解决使用yarn方式创建strapi

  • 命令
    yarn create strapi-app strapi-server

    image

    image


  1. 我使用的node版本是14.20.0,npm版本是6.14.17 注意strapi官网的版本要求 官网,选择自己合适的安装版本即可。
  2. 我使用的不是默认的quickstart,而是custom方式
    image
  3. 如果使用的是quickstart方式需要sqlite的支持,可能需要安装其他依赖-_-
  4. 创建时使用的数据库是MySQL,需要提前创建数据库否则可能导致连接失败。

ok fine!

注:如果使用的是npm,则以上方式可以将yarn替换为npm;cnpm也类似。

posted @ 2022-12-07 01:15  Hui_Li  阅读(4354)  评论(0编辑  收藏  举报