Skip to content

Commit 24d0d68

Browse files
shoumikhinmalfet
authored andcommitted
Update readme to use the standard (#359)
1 parent 52f1600 commit 24d0d68

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,19 @@ Torchchat is an easy-to-use library for running large language models (LLMs) on
1616

1717
## Quick Start
1818
### Initialize the Environment
19-
The following steps requires you have [Python 3.10](https://www.python.org/downloads/release/python-3100/) and [virtualenv](https://virtualenv.pypa.io/en/latest/installation.html) installed
19+
The following steps requires you have [Python 3.10](https://www.python.org/downloads/release/python-3100/) installed
2020

2121
```
22-
# set up a virtual environment
23-
python3 -m virtualenv .venv/torchchat
24-
source .venv/torchchat/bin/activate
25-
26-
# get the code and dependencies
22+
# get the code
2723
git clone https://github.com/pytorch/torchchat.git
2824
cd torchchat
29-
bash ./install_requirements.sh
25+
26+
# set up a virtual environment
27+
python3 -m venv .venv
28+
source .venv/bin/activate
29+
30+
# instal dependencies
31+
./install_requirements.sh
3032
3133
# ensure everything installed correctly
3234
python torchchat.py --help

0 commit comments

Comments
 (0)