manuales_desarrollo

Manuales de desarrollo de YeboYebo


Project maintained by yeboyebo Hosted on GitHub Pages — Theme by mattgraham

Python

Los portátiles vienen con python3.5 instalado por defecto, podemos comprobarlo con:

	python3 --version

Si tenemos python3.5.2 solo tenemos que ejecutar el siguiente comando:

	alias python=python3
	sudo apt-get install python3-pip

Para hacerlo permanente, se añade al final del fichero oculto .bashrc

Si no tenemos python3:

	sudo apt-get install python3
    sudo apt-get install python3.4
    alias python3 python3.4
	sudo apt-get install python3-pip