fixing the README for python setup under appendix-A (#102)

* fixing the README for python setup under appendix-A

* fixing the README for python setup under appendix-A
This commit is contained in:
Suman Debnath 2024-04-02 16:51:11 -04:00 committed by GitHub
parent d081928e90
commit ec4fe5377d
2 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ conda config --set solver libmamba
## 2. Create a new virtual environment
After the installation was successfully completed, I recommend creating a new virtual environment called `dl-fundamentals`, which you can do by executing
After the installation was successfully completed, I recommend creating a new virtual environment called `LLMs`, which you can do by executing
```bash
conda create -n LLMs python=3.10
@ -58,7 +58,7 @@ conda create -n LLMs python=3.10
Next, activate your new virtual environment (you have to do it every time you open a new terminal window or tab):
```bash
conda activate dl-workshop
conda activate LLMs
```
<img src="figures/activate-env.png" alt="activate-env" width="600px">

View File

@ -14,7 +14,7 @@ pip install -r requirements.txt
Then, after completing the installation, please check if all the packages are installed and are up to date using
```
python_environment_check.py
python python_environment_check.py
```
<img src="figures/check_1.jpg" width="600px">