qvacua / vimr

VimR — Neovim GUI for macOS in Swift
https://twitter.com/VimRefined
MIT License
6.64k stars 218 forks source link

Installation fails #884

Closed james-d-mitchell closed 2 years ago

james-d-mitchell commented 2 years ago

Trying to follow the installation instructions on an Apple M1, gives the following error:

 …/git/vimr  code_sign=false use_carthage_cache=false ./bin/build_vimr.sh
### Building VimR target
### Updating carthage
*** Fetching github-markdown-css
*** Checking out github-markdown-css at "v5.0.0"
*** xcodebuild output can be found in /var/folders/r5/j7m8hftj25q1j17cb8v8k9mr0000gn/T/carthage-xcodebuild.55Piv1.log
*** Skipped building github-markdown-css due to the error:
Dependency "github-markdown-css" has no shared framework schemes for any of the platforms: Mac

If you believe this to be an error, please file an issue with the maintainers at https://github.com/sindresorhus/github-markdown-css/issues/new
### Downloading NvimServer
cat: ./resources/nvimserver_version.txt: No such file or directory
notlus commented 2 years ago

I am getting the same error following the installation instructions on an M1 Pro.

akio-ito commented 2 years ago

Is working for me now. Thank you.

notlus commented 2 years ago

I am getting the same error following the installation instructions on an M1 Pro.

The issue I had was that I had not initialized the submodules. I was able to build after doing the following:

git submodule init
git submodule update

Ideally the build instructions should include this step in the "How to Build" section.