j'ai installé asymptote en suivant les commandes indiquées par Christophe Grospellier dans Dem_Rapide :
Code : Tout sélectionner
sudo tlmgr remove --force asymptote
Code : Tout sélectionner
sudo apt-get install build-essential subversion flex texinfo autoconf zlib1g-dev bison
sudo apt-get install freeglut3-dev cdbs libfftw3-dev libreadline6-dev libncurses5-dev
sudo apt-get install libgsl0-dev libsigsegv-dev imagemagick libosmesa6-dev
Code : Tout sélectionner
mkdir asymptote_svn
cd asymptote_svn
svn co http://svn.code.sf.net/p/asymptote/code/trunk/asymptote
Code : Tout sélectionner
cd asymptote
./autogen.sh
wget http://hboehm.info/gc/gc_source/gc-7.4.0.tar.gz
wget http://hboehm.info/gc/gc_source/libatomic_ops-7.4.0.tar.gz
./configure
make all
sudo make install
Après :
Code : Tout sélectionner
wget http://www.ivmaisoft.com/_bin/atomic_ops/libatomic_ops-7.4.2.tar.gz
wget http://hboehm.info/gc/gc_source/gc-7.4.0.tar.gz
Code : Tout sélectionner
./configure
make all
sudo make install
Code : Tout sélectionner
import three;
size(6cm);
currentprojection=orthographic(5,4,3);
draw(unitsphere,green);
Code : Tout sélectionner
asy -V -render=4 sphere02.asy
Code : Tout sélectionner
/usr/local/share/asymptote/three.asy: 2905.13: runtime: division by 0 in transform of a triple
terminate called after throwing an instance of 'handled_error'
Abandon (core dumped)
Code : Tout sélectionner
asy -config="" -f pdf sphere02.asy
Sur d'autres fichiers compilés antérieurement, j'ai le même problème avec en plus des messages de Latex ! Pourquoi Latex dans une commande asy sur un fichier .asy qui ne contient aucune commande Latex ?
Peut-être quelqu'un a-t-il déjà rencontré ce problème ?