-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #274 from kfehlhauer/doc-enhancements
Fix: Compile Failed for llm-chain-llama-sys & llm-chain-llama #248
- Loading branch information
Showing
1 changed file
with
13 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,15 +3,22 @@ | |
First of all, thank you for considering contributing to our project! 🎉 We are delighted to have you here and truly appreciate your interest in making our project even better. Your contributions and ideas are highly valued. | ||
|
||
## Getting Started | ||
### Prerequisites | ||
Install cmake | ||
- MacOS: `brew install cmake` | ||
- Ubuntu: `sudo apt-get install cmake` | ||
|
||
Install protobuf | ||
- MacOS: `brew install protobuf` | ||
- Ubuntu: `sudo apt-get install protobuf-compiler` | ||
|
||
1. Make your own fork of [`llm-chain`](https://github.com/sobelio/llm-chain). | ||
2. `git clone` your fork to your local machine. | ||
2. ` git clone --recurse-submodule [email protected]:<YOUR GITHUB ACCOUNT HERE>/llm-chain.git` your fork to your local machine. | ||
3. Follow the instructions on the [rustup website](https://rustup.rs/) to install Rust. | ||
4. Fetch the project's submodules with `git submodule update` | ||
5. Test that everything went well with `cargo test` | ||
6. Make your changes in a new branch, following the coding guidelines and best practices. | ||
7. Commit and push your changes to your fork. | ||
8. Open a pull request against the main repository. 🚀 | ||
4. Test that everything went well with `cargo test` | ||
5. Make your changes in a new branch, following the coding guidelines and best practices. | ||
6. Commit and push your changes to your fork. | ||
7. Open a pull request against the main repository. 🚀 | ||
|
||
## Before You Contribute | ||
|
||
|