Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated README.md #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,15 @@ hint: See PEP 668 for the detailed specification.
1. find /usr/lib -name EXTERNALLY-MANAGED
2.sudo mv /usr/lib/python3.11/EXTERNALLY-MANAGED /etc/motd
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~



here's mine opinion
Issue: You're trying to install a Python package using pip, but the environment is externally managed, meaning that package management is handled by the system package manager (apt) rather than pip.

Suggested Solutions:
1. Install system-wide using apt: Try installing the package using apt, like this: apt install python3-xyz, replacing xyz with the package name you're trying to install.

2. Create a virtual environment: Create a virtual environment using python3 -m venv path/to/venv, then activate it and install packages using pip.

3. Use pipx: If you want to install a non-Debian-packaged Python application, consider using pipx install xyz, which will manage a virtual environment for you.