I know that sudo pip is obviously wrong, so what am I supposed to do? There are other issues as well, not using virtual environments and installations that break OS dependencies, and/or a mishmash of install options to begin with (like: do you use macports or homebrew? What happens when the tool you need is …
Tag Archives: python
matplotlib in python on linux installation
I know I will need this next time I do an install: python -m pip install -U matplotlib sudo apt install python-tk then can run a test with this code: import matplotlib.pyplot as plt plt.plot([1,2,3],[2,4,5]) plt.show()