When we are installing ffmpeg in linux, we may get this error: nasm/yasm not found or too old. Use –disable-x86asm for a crippled build. In this tutorial, we will introduce you how to fix it.
This error looks like:
How to fix nasm/yasm error?
We can fix this error by these steps.
Step 1: download yasm 1.3.0 for linux
We can download it in here:
http://www.tortall.net/projects/yasm/releases/
Step 2: run commands below one by one
tar zxvf yasm-1.3.0.tar.gz cd yasm-1.3.0 ./configure make make install
Then, we will find this error is fixed.