"Considero a cada hombre como un deudor de su profesión, y ya que de ella recibe sustento y provecho, así debe procurar mediante el estudio servirle de ayuda y ornato" Francis Bacon, "La casualidad favorece a las mentes entrenadas" Louis Pasteur, "Omnes homines natura scire desiderant"Aristóteles.
martes, 12 de julio de 2016
Installation of numpy, scipy and matplotlib on Debian (python2)
1.- Installing dependencies
apt-get update
apt-get install python-setuptools python-pip python-dev python-virtualenv libblas-dev liblapack-dev libatlas-base-dev gfortran libfreetype6-dev pkg-config
3.- Installing scipy, numpy, matplotlib
pip install scipy numpy
apt-get install python-matplotlib
4.- Testing
import numpy as np
import matplotlib.pyplot as plt
X = np.linspace(-np.pi, np.pi, 256, endpoint=True)
C, S = np.cos(X), np.sin(X)
plt.plot(X, C)
plt.plot(X, S)
plt.show()
Links:
Scipy Lectures
Installation of Python3, scipy, numpy and matplotlib on Debian 8
1.- Download and Install Python3
wget https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tgz
tar xvf Python-3.5.2
cd Python-3.5.2
./configure
make
make test
make install
2.- Installing dependencies
apt-get update
apt-get install python-setuptools python-pip python-dev python-virtualenv libblas-dev liblapack-dev libatlas-base-dev gfortran libfreetype6-dev pkg-config
3.- Installing scipy, numpy, matplotlib
pip3.5 install --upgrade pip
pip3.5 install scipy numpy matplotlib
4.- Testing
import numpy as np
import matplotlib.pyplot as plt
X = np.linspace(-np.pi, np.pi, 256, endpoint=True)
C, S = np.cos(X), np.sin(X)
plt.plot(X, C)
plt.plot(X, S)
plt.savefig('test.pdf')
Links:
Scipy Lectures
Suscribirse a:
Entradas (Atom)