我一直在尝试在离线linux系统上安装matplotlib而没有太大的成功。
我试过了:
python2.7 setup.py build
然后尝试以下方法:
Downloading http://pypi.python.org/packages/source/d/distribute/distribute-0.6.28.tar.gz
setup.py install
也是如此。
如何在没有互联网连接的情况下安装它?
我使用Python 2.7.12
答案 0 :(得分:0)
下载matploitdb滚轮 “http://www.lfd.uci.edu/~gohlke/pythonlibs/#matplotlib”
然后呢,
pip install matploitdb_wheel.whl
答案 1 :(得分:0)
转到Matplotlib pypi包索引并下载适合您系统的文件。 然后使用:
$ sudo apt-get install python-setuptools build-essential
$ pip install wheel_file.whl
您可能必须在此命令中使用sudo
。