User:Thierry Dugnolle/Python
The language of the machine must adapt to the human being, and not the other way round.
The Python files which generate my images and my animations:
A very little body-centered cubic stone
Continuous line crossing transition
High definition crossing of lines
Pythagore and the origin of harmony: the perfect fifth
Pythagore and the origin of harmony: the octave
The French flag model of Lewis Wolpert
Travelling gaussian quantum 1D wave packet
To make an animation, I make use of imagemagick in a terminal. You can install it with the following command:
sudo apt-get install imagemagick
If I open a terminal from the folder where my images are, I can convert them in an animation with the following command:
convert -delay 4 -loop 0 image*.bmp animation.gif
To install Pillow (a package needed for these files to work), you might need the following commands:
pip install --upgrade pip
sudo apt-get install python3-tk
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade Pillow
To edit and run my Python files, I make use of Pycharm. You can download it for free. If you make use of Pycharm, click on the mouse right button on 'PIL' at the top of the file before you run it. Then click on 'Show context actions' with the left button, and on 'Install package Pillow', with the same button.