[pyar] [ot] extensión en python para inkscpe
Jesús Francisco
jgomo3 en gmail.com
Lun Nov 26 17:35:34 ART 2012
Yo sí he tenido problemas al instalar varias versiones de Python. Descubrí
que el `make install` lo puedes cambiar por `make altinstall` ya que así no
sustituye el enlace simbólico python a la versión "oficial" de tu
distribución de Linux.
Por otro lado puedes instalar Python2.7 compilandolo. Te refiero a esta
respuesta en Askubuntu[1], pero en resumen:
$ sudo apt-get install build-essential
$ sudo apt-get install libreadline5-dev libncursesw5-dev libssl-dev
libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev
$ wget http://python.org/ftp/python/2.7.2/Python-2.7.2.tgz
$ tar -xvf Python-2.7.2.tgz && cd Python-2.7.2/
$ ./configure
$ make
$ sudo make altinstall # Esta esla clave
Luego, modificas más bien las referencias al intérprete de Python en la
extensión:
$ cd <el directorio de la extensión>
$ # Cambiar todos los python por python2.7
$ for f in $(grep -Ril python .); do sed -i "s/python/python2.7/g" $f;
done
$ # Como ya había un texto "python2" por ahí, hay que cambiar
$ # un "python2.72" por "python2.7"
$ sed -i "s/python2\.72/python2.7/g" sozi.py
[1]
http://askubuntu.com/questions/101591/how-do-i-install-python-2-7-2-on-10-04
------------ próxima parte ------------
Se ha borrado un adjunto en formato HTML...
URL: <http://listas.python.org.ar/pipermail/pyar/attachments/20121126/13685808/attachment.html>
More information about the pyar
mailing list