PHP 8.2.30
Preview: virtualenv.py Size: 891 B
//lib/python3.8/site-packages/pip/_internal/utils/virtualenv.py

import os.path
import site
import sys


def running_under_virtualenv():
    # type: () -> bool
    """
    Return True if we're running inside a virtualenv, False otherwise.

    """
    if hasattr(sys, 'real_prefix'):
        # pypa/virtualenv case
        return True
    elif sys.prefix != getattr(sys, "base_prefix", sys.prefix):
        # PEP 405 venv
        return True

    return False


def virtualenv_no_global():
    # type: () -> bool
    """
    Return True if in a venv and no system site packages.
    """
    # this mirrors the logic in virtualenv.py for locating the
    # no-global-site-packages.txt file
    site_mod_dir = os.path.dirname(os.path.abspath(site.__file__))
    no_global_file = os.path.join(site_mod_dir, 'no-global-site-packages.txt')
    if running_under_virtualenv() and os.path.isfile(no_global_file):
        return True
    else:
        return False

Directory Contents

Dirs: 1 × Files: 23

Name Size Perms Modified Actions
- drwxr-xr-x 2024-03-21 10:19:28
Edit Download
9.54 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
9.34 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
3.24 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
1.29 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
3.26 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
571 B lrw-r--r-- 2023-10-17 18:30:24
Edit Download
4.29 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
3.93 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
810 B lrw-r--r-- 2023-10-17 18:30:24
Edit Download
12.73 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
823 B lrw-r--r-- 2023-10-17 18:30:24
Edit Download
24.98 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
1.12 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
2.96 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
1.59 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
9.68 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
5.39 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
1.10 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
13.58 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
9.46 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
1.45 KB lrw-r--r-- 2023-10-17 18:30:24
Edit Download
891 B lrw-r--r-- 2023-10-17 18:30:24
Edit Download
0 B lrw-r--r-- 2023-10-17 18:30:24
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).