reorproject / reor

Private & local AI personal knowledge management app.

Home Page:https://reorproject.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hello, how do I compile an exe installation package under ubuntu? Or how do I get an installation package for a self-compiled exe?

xuquankun opened this issue · comments

To compile an exe installation package under Ubuntu, follow these steps:

  1. Clone the repository:
 git clone https://github.com/reorproject/reor.git
  1. Navigate to the project directory:
 cd reor
  1. Install dependencies:
 npm install
  1. Build the project:
 npm run build
  1. Locate the compiled exe:
    The compiled exe will be located in the ./release directory. You can find it by listing the files:
 ls ./release/*/*.exe

References

/.github/workflows/build.yml
/.github/workflows/release.yml
/README.md

Ask Greptile · Edit Issue Bot Settings

I did this, but I ran into a module failure, such as ‘’eslint‘’、‘’vectordb‘’, if I ignore these problems, the final compiled exe installation package will not be executed.
image

Did you pull the latest commit? lancedb/vectordb-win32-x64-msvc should be an optional package now.

Did you pull the latest commit? lancedb/vectordb-win32-x64-msvc should be an optional package now.
Yes, I pulled the latest commit, and after compiling it still reported the same error, what system environment did you compile in?

I am not using Ubuntu, sorry I can't help you with that...

In my experience, given the complexity of the packages we use for running local models (onnx and ollama), you can't really build for a different OS than the OS you are building on - it tends to lead to a broken build...