Fix seqeval Installation with subprocess-exited-with-error – Python Tutorial

By | March 20, 2023

When we are installing python seqeval library, we may get this error: subprocess-exited-with-error. In this tutorial, we will introduce you how to fix it and install seqeval.

This error is following:

fix seqeval installation with subprocess-exited-with error

How to fix this error?

Here are some solution steps:

Step 1. Install setuptools-scm using pip

This is the command:

pip install -i https://mirrors.aliyun.com/pypi/simple/ setuptools-scm  --trusted-host mirrors.aliyun.com

Step 2. Install seqeval

pip install -i https://mirrors.aliyun.com/pypi/simple/ seqeval --trusted-host mirrors.aliyun.com

Then, we can find this error is fixed.