i-am-bee / bee-agent-framework

The framework for building scalable agentic applications.
https://i-am-bee.github.io/bee-agent-framework/
Apache License 2.0
478 stars 54 forks source link

Dependencies issue (Couldn't find package X required by Y) on Mac M1 #112

Open barvhaim opened 2 hours ago

barvhaim commented 2 hours ago

Hi, I've just getting started with running the example locally on my Mac M1, cloned the project and ran nvm install & nvm use to get the required node, and then npm install, the installation failed with the error:

error Couldn't find package "@rollup/rollup-freebsd-arm64@4.24.1" required by "rollup@^4.24.0" on the "npm" registry.

To Reproduce Steps to reproduce the behavior:

  1. Clone the project and cd to the project
  2. nvm install
  3. nvm use
  4. npm install

Expected behavior Expected the installation to complete successfully

Screenshots / Code snippets If applicable, add screenshots or code snippets to help explain your problem.

image

Set-up:

barvhaim commented 2 hours ago

might be related https://github.com/vitejs/vite/issues/18481

barvhaim commented 2 hours ago

I've added

"resolutions": {
    "rollup": "4.24.0"
  }

to package.json and it completed the installation successfully

(https://github.com/vitejs/vite/issues/18481#issuecomment-2439896338)

image

should I open a PR with that change?