File size: 1,214 Bytes
42472b3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43

## Make sure you have git-lfs installed [Git LFS](https://git-lfs.com) ✅
# 🧑🏻‍💻Steps to download the Code

**📌 NOTE-1: If the Llama 2 Model is not donwloaded then the code will not work properly.** 

**📌 NOTE-2: If the HuggingFaces API is not in ```.env``` file then generate your own API key from HugginFaces and use it.**

---

Step:0
- Copy and Paste the below command in terminal.
- This command will help to download the code to your local machine.
```shell
git clone https://huggingface.co/spaces/AAYUSH27/Neuro
```
- The file is of approx. 5GB
- If you want to clone without large files (Llama 2 Model).
```shell
git clone https://huggingface.co/spaces/AAYUSH27/Neuro
GIT_LFS_SKIP_SMUDGE=1
```

Step:1 
- Copy and Paste the below command in terminal.
- This command helps to go into the project directory.
```shell
cd Neuro
```

Step:2
-  Copy and Paste the below command in terminal.
- This commmand helps to install all the libraries in one take from ```requirements.txt```.
```shell
pip3 install -r requirements.txt
```

Step:3
- Copy and Paste the below command in terminal.
- This command helps to run the code into local host via ```streamlit```.
```shell
streamlit run -app.py
```