# Uvx 'Failed to build'

Published 2025-01-29

I've recently started using uv to manage my python projects, and it's been a great improvement over pyenv and pipenv which I was previously using.

A neat feature of uv is the uvx command, which runs python applications in an isolated environment. I ran into an issue with uvx this evening; here's what I learned.

I wanted to run checkov to to scan some Terraform code that I had written. To do this, the uvx command is:

uvx checkov -d <path-to-terraform>

When running the command, I encountered the following error.

  × Failed to build `rustworkx==0.13.2`
  ├─▶ The build backend returned an error
  ╰─▶ Call to `setuptools.build_meta.build_wheel` failed (exit status: 1)

      [stdout]
      running bdist_wheel
      running build
      running build_py
      copying rustworkx/visit.py -> build/lib.macosx-11.0-arm64-cpython-313/rustworkx
      copying rustworkx/__init__.py -> build/lib.macosx-11.0-arm64-cpython-313/rustworkx
      copying rustworkx/visualization/matplotlib.py -> build/lib.macosx-11.0-arm64-cpython-313/rustworkx/visualization
      copying rustworkx/visualization/graphviz.py -> build/lib.macosx-11.0-arm64-cpython-313/rustworkx/visualization
      copying rustworkx/visualization/__init__.py -> build/lib.macosx-11.0-arm64-cpython-313/rustworkx/visualization
      running egg_info
      writing rustworkx.egg-info/PKG-INFO
      writing dependency_links to rustworkx.egg-info/dependency_links.txt
      writing requirements to rustworkx.egg-info/requires.txt
      writing top-level names to rustworkx.egg-info/top_level.txt
      reading manifest file 'rustworkx.egg-info/SOURCES.txt'
      reading manifest template 'MANIFEST.in'
      adding license file 'LICENSE'
      writing manifest file 'rustworkx.egg-info/SOURCES.txt'
      copying rustworkx/__init__.pyi -> build/lib.macosx-11.0-arm64-cpython-313/rustworkx
      copying rustworkx/digraph.pyi -> build/lib.macosx-11.0-arm64-cpython-313/rustworkx
      copying rustworkx/graph.pyi -> build/lib.macosx-11.0-arm64-cpython-313/rustworkx
      copying rustworkx/iterators.pyi -> build/lib.macosx-11.0-arm64-cpython-313/rustworkx
      copying rustworkx/py.typed -> build/lib.macosx-11.0-arm64-cpython-313/rustworkx
      copying rustworkx/rustworkx.pyi -> build/lib.macosx-11.0-arm64-cpython-313/rustworkx
      running build_ext
      running build_rust

      [stderr]
      error: can't find Rust compiler

      If you are using an outdated pip version, it is possible a prebuilt wheel is available for this package but pip is not able to install from it. Installing from the wheel
      would avoid the need for a Rust compiler.

      To update pip, run:

          pip install --upgrade pip

      and then retry package installation.

      If you did intend to build this package from source, try installing a Rust compiler from your system package manager and ensure it is on the PATH during installation.
      Alternatively, rustup (available at https://rustup.rs) is the recommended way to download and update the Rust compiler toolchain.

      hint: This usually indicates a problem with the package or the build environment.
  help: `rustworkx` (v0.13.2) was included because `checkov` (v3.2.358) depends on `rustworkx`

The error suggests that rustworkx cannot be built because i'm missing a Rust compiler.

Before installing Rust, I span up a virtual environment using pipenv and did a pip install checkov. This built without issues and I was able to execute the checkov command.

Hmmm... Why does pipenv work, but uvx doesn't?

According to the documentation...

By default,uv builds all packages in isolated virtual environments, as per PEP 517

It seems that the default behaviour for uvx is to build packages in an isolated environment, and pip prefer's to download pre-compiled binaries. To resolve the issue, I used the --no-build option.

uvx --no-build checkov

Installing Rust directly into your system should also resolve the issue, and you won't need to use the --no-build option. Whilst testing this, I discovered that if you uninstall Rust and re-run uvx checkov, the command will succeeds. This is because uv has a cache. You can use the uvx --no-cache option to prevent uvx from using the cache, and you can clear the cache using uv cache clean.