File size: 1,138 Bytes
8261ee3 c876b0b 8261ee3 c876b0b 8261ee3 c876b0b 8261ee3 c876b0b 8261ee3 c876b0b 8261ee3 c876b0b 8261ee3 c876b0b 8ac6150 56c9213 8ac6150 56c9213 8ac6150 56c9213 e1a89b3 |
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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
## Install Git LFS
```
brew install git-lfs
```
or download from https://git-lfs.github.com/
## Update global git config
```
$ git lfs install
```
## Update system git config
```
$ git lfs install --system
```
## Clone the Repo
### Entire Clone
```
git clone https://huggingface.co/webslate/transactify
```
### Light Clone
```
GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/webslate/transactify
```
## For Pushing the Code
> Refer to https://huggingface.co/blog/password-git-deprecation
### Set the Remote URL
```
$: git remote set-url origin https://<user_name>:<token>@huggingface.co/<repo_path>
```
### Token Creation
> Go to Settings > Access Tokens > Create new token >
Choose Write Tab (3rd one) / go here https://huggingface.co/settings/tokens/new?tokenType=write
## Create Virtual Environment
```
create a Virtual Environment for Transactify project...
python -m venv transactify_venv
To activate environment..
go to cmd ..
type >> cd transactify_venv
>> cd scripts
>> activate
```
## Installing Required Libaries.
to install required libaries...
go to cmd..
type >>pip install -r requirements.txt
|