I'm struggling to download and install Pip on my Linux Mint system. I've followed numerous tutorials, but nothing seems to work. I'm using Visual Studio, which might be a factor, but I'm not sure. Is there an alternative way to add libraries without Pip?
2 Answers
You should definitely try using pip3 instead of pip. That might solve your issue since pip3 is commonly used for Python 3 installations.
Pip usually comes pre-installed with your Python from the Mint repositories. If you are planning on serious Python development, consider setting up an apt sources.list for the official Python version from python.org. However, since you mentioned wanting to create Minecraft bots, that may not be necessary.
Never heard of setting up a sources list either, I've been working with Python for a while and just use apt to install pip directly.

I don't think my Minecraft bots count as serious coding! Just trying to make fun projects here.