From 18b9a721e7f25433bb1375e78d170c26a4a2c4fd Mon Sep 17 00:00:00 2001 From: Kalyan Chakravarthy Date: Wed, 24 Jul 2024 19:53:10 +0530 Subject: [PATCH] updated the small changes in quickstart.html --- docs/api/quick_start.html | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/docs/api/quick_start.html b/docs/api/quick_start.html index f53bb4ef2..a4bf4334d 100644 --- a/docs/api/quick_start.html +++ b/docs/api/quick_start.html @@ -368,7 +368,7 @@

Quick Start#

The following can be used as a quick reference on how to get up and running with langtest:

# Install langtest from PyPI
-pip install langtest==1.1.0
+pip install langtest==2.3.1
 
from langtest import Harness
@@ -386,20 +386,13 @@ 

Alternative Installation OptionsVirtualenv:

virtualenv langtest --python=python3.8
 source langtest/bin/activate
-pip install langtest==1.1.0 jupyter
+pip install langtest==2.3.1 jupyter
 

Now you should be ready to create a jupyter notebook with LangTest running:

jupyter notebook
 
-

We can also use conda and create a new conda environment to manage all the dependencies there.

-

Then we can create a new environment langtest and install the langtest package with pip:

-
conda create -n langtest python=3.8 -y
-conda activate langtest
-conda install -c langtest==1.1.0 jupyter
-
-

Now you should be ready to create a jupyter notebook with LangTest running:

jupyter notebook