Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install farstail via python pip




farstail - Persian Natural Language Inference DataSet, it belongs to Classifiers:

- Natural Language :: Persian

When you know about this project and you want to new install farstail to support your project or you get trouble as ModuleNotFoundError: No module named "farstail" or ImportError: cannot import name "farstail" in your project, let follow this tutorial to install farstail



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_farstail_env

- Active the virtual environment

test_farstail_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_farstail_env

- Active the virtual environment

source test_farstail_env/bin/active


Step 2: OK, now, let flow below content to start the installation farstail

To install farstail on Windows(CMD):

py -m pip install farstail

To install farstail on Unix/macOs:

pip install farstail


Step 3: If you want to install a specific farstail version, add ==<farstail version> to the end command line

Example:

pip install farstail==1.0.1


Please see the version list below table:

VersionReleased dateCommand
farstail 1.0.52020-11-12T04:34:54Windows:

py -m pip install farstail==1.0.5

Unix/macOs:

pip install farstail==1.0.5

farstail 1.0.42020-09-21T05:55:54Windows:

py -m pip install farstail==1.0.4

Unix/macOs:

pip install farstail==1.0.4

farstail 1.0.32020-09-21T05:48:04Windows:

py -m pip install farstail==1.0.3

Unix/macOs:

pip install farstail==1.0.3

farstail 1.0.22020-09-18T00:26:47Windows:

py -m pip install farstail==1.0.2

Unix/macOs:

pip install farstail==1.0.2

farstail 1.0.12020-03-09T21:29:53Windows:

py -m pip install farstail==1.0.1

Unix/macOs:

pip install farstail==1.0.1


Step 4: Otherwise, you can install farstail from local archives:

Download the distribution file from farstail-1.0.5.tar.gz or the specific farstail version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_farstail_downloaded_file>

On Unix/macOs:

pip install <path_to_farstail_downloaded_file>


List distribution:

- farstail-1.0.1-py3-none-any.whl (python version >=3.6)
- farstail-1.0.1.tar.gz (python version >=3.6)
- farstail-1.0.2-py3-none-any.whl (python version >=3.6)
- farstail-1.0.2.tar.gz (python version >=3.6)
- farstail-1.0.3-py3-none-any.whl (python version >=3.6)
- farstail-1.0.3.tar.gz (python version >=3.6)
- farstail-1.0.4-py3-none-any.whl (python version >=3.6)
- farstail-1.0.4.tar.gz (python version >=3.6)
- farstail-1.0.5-py3-none-any.whl (python version >=3.6)
- farstail-1.0.5.tar.gz (python version >=3.6)


Project link:

- Homepage