我知道如何使用pip命令安装外部模块,但对于Scikit-learn,我需要安装NumPy和Matplotlib。
如何使用pip命令安装这些模块?
旧帖,但正确的答案是,'sudo pip install -U numpy matplotlib——upgrade' (python2)或'sudo pip3 install -U numpy matplotlib——upgrade' (python3)
使用Python 3.4,我从命令行运行以下命令:
c:python34python.exe -m PIP install package_name所以你可以用"numpy"one_answers"matplotlib"代替'package_name'