---
title: "ERROR = Can Not Perform a User Install - User Site Packages Are Not Visible in This Virtualenv"
url: "https://blog.101ta28.com/en/posts/error-user-install-site-packages-not-visible-virtualenv/"
language: "en"
description: "How to fix the error `ERROR = Can not perform a '--user' install. User site-packages are not visible in this virtualenv.` when using Python venv (virtual environment)."
---

# ERROR = Can Not Perform a User Install - User Site Packages Are Not Visible in This Virtualenv

> How to fix the error `ERROR = Can not perform a '--user' install. User site-packages are not visible in this virtualenv.` when using Python venv (virtual environment).

How to fix the error `ERROR = Can not perform a '--user' install. User site-packages are not visible in this virtualenv.` when using Python venv (virtual environment).

1. Open the `pyvenv.cfg` file in the virtual environment folder.
2. Change `include-system-site-packages = false` to `true`.
3. Restart the virtual environment.
