Installation

PyQInt is available via PyPI.

Why environments?

An environment keeps the packages for a project separate from the rest of your system (and from other projects). This prevents accidental upgrades or conflicts that can break existing setups. It also makes it easy to remove the environment later without touching your system-wide Python. For these reasons, installing into Conda’s base environment is discouraged.

Alternative (single-user install without a virtual environment)

If you prefer not to create a virtual environment, you can install for the current user only (no system-wide changes):

pip install --user pyqint

Warning

We do not recommend using sudo pip install .... Installing packages with administrative privileges can overwrite or conflict with system Python components and may break tools your operating system relies on.