08-17-2024 11:38 PM
Hi there
I have Python 3.12.3 on a Ubuntu 24.04 VM.
I would like to install pip3 but Ubuntu gives me an error.
The error is "externally-managed-environment"
It says if I do want to install it then I can risk instaling it with --break-system-packages
And then it gives the hint of "See PEP 668 for the detailed specification"
What must I do to fix this or which Python version does not gives this error.
Thanks in advance!
08-18-2024 12:45 PM
Sounds like you may be using the system's Python, to avoid causing the system problems it discourages making changes.
I suggest use pyenv to create a separate Python environment under your control, and use that for your Meraki/other development. See...
https://realpython.com/intro-to-pyenv/
...it has instructions for Ubuntu.
This is what I always do, I never use the system Python.
08-18-2024 09:37 PM
Thanks so much bud! I really appreciate it! Have a great day!
08-19-2024 04:37 AM
sudo apt install python3-pip
08-19-2024 07:26 AM
Thanks Philip! I will try that!
08-20-2024 03:59 AM
Hi Phillip
I ran your command and the system told me that pip3 was already installed.
When I did a pip3 install pytube it still gives me an error.
I will have to try the virtual env
Thanks
08-20-2024 04:07 AM
Try:
sudo pip3 install pytube
You don't usually need to use sudo when using this command.
Virtual env might be safer ...
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide