I attempted to install a Python package using this command.
pip3 install [package-name]
And then this error was thrown.
Create path/.config/pip/pip.conf and type this script.
[global] break-system-packages = true user = true
Install pipenv to manage dependencies per project. The pip.conf file let the command run with --break-system-packages and --user options.
pip3 install pipenv
Run a file with the all project dependencies in a virtual environment
pipenv run python [file-name] .py
Otherwise, you could run up a virtual environment instance and run the python file.
pipenv shell python [file-name].py
위 내용은 오류: Python 패키지 설치 시 외부 관리 환경의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!