📜  vscode linux 中的 pip - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:05.992000             🧑  作者: Mango

代码示例1
# Don't use with Anaconda distributions because they include matplotlib already.

# macOS
python3 -m pip install matplotlib

# Windows (may require elevation)
python -m pip install matplotlib

# Linux (Debian)
apt-get install python3-tk
python3 -m pip install matplotlib