panda3d_installation_sur_debian
Différences
Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
| panda3d_installation_sur_debian [2018/07/24 11:45] – [Dépendances] serge | panda3d_installation_sur_debian [2020/10/30 10:21] (Version actuelle) – ↷ Liens modifiés en raison d'un déplacement. serge | ||
|---|---|---|---|
| Ligne 1: | Ligne 1: | ||
| ======Panda3d Installation sur Debian====== | ======Panda3d Installation sur Debian====== | ||
| + | |||
| + | <WRAP center round info 60%> | ||
| + | **Installation de Panda3d**\\ | ||
| + | **Première approche de Panda**\\ | ||
| + | </ | ||
| + | |||
| + | =====Installation===== | ||
| Il y a un paquet .deb pour Ubuntu, mais rien sur Debian. | Il y a un paquet .deb pour Ubuntu, mais rien sur Debian. | ||
| Testé sur Debian 9 Stretch en juillet 2018. | Testé sur Debian 9 Stretch en juillet 2018. | ||
| + | < | ||
| + | sudo pip3 install --pre --extra-index-url https:// | ||
| + | [sudo] Mot de passe de pierre : | ||
| + | Collecting panda3d | ||
| + | Downloading http:// | ||
| + | 100% |████████████████████████████████| 43.5MB 7.2MB/ | ||
| + | Installing collected packages: panda3d | ||
| + | Successfully installed panda3d-1.10.0.dev1710 | ||
| + | </ | ||
| + | |||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * **[[https:// | ||
| - | =====Téléchargement des sources===== | + | =====Hello world===== |
| - | =====Dépendances===== | + | <file python panda_hello_world.py> |
| + | <# | ||
| + | # -*- coding: utf-8 -*- | ||
| + | from direct.showbase.ShowBase import ShowBase | ||
| + | from direct.gui.OnscreenText import OnscreenText | ||
| - | WARNING: Could not locate pkg-config package eigen3, excluding from build | + | class MyApp(ShowBase): |
| - | WARNING: Could not locate thirdparty package artoolkit, excluding from build | + | |
| - | WARNING: Could not locate thirdparty package fcollada, excluding from build | + | def __init__(self): |
| - | WARNING: Could not locate thirdparty package ffmpeg, excluding from build | + | |
| - | WARNING: Could not locate thirdparty package swscale, excluding from build | + | |
| - | WARNING: Could not locate thirdparty package swresample, excluding from build | + | # Load the environment model. |
| - | WARNING: Could not locate thirdparty package fftw, excluding from build | + | |
| - | WARNING: Could not locate thirdparty package fmodex, excluding from build | + | # Reparent the model to render. |
| - | WARNING: Could not locate thirdparty package gles, excluding from build | + | |
| - | WARNING: Could not locate thirdparty package nvidiacg, excluding from build | + | # Apply scale and position transforms on the model. |
| - | WARNING: Could not locate thirdparty package ode, excluding from build | + | |
| - | WARNING: Could not locate thirdparty package openal, excluding from build | + | |
| - | WARNING: Could not locate thirdparty package squish, excluding from build | + | |
| - | WARNING: Could not locate thirdparty package tiff, excluding from build | + | pos = (-0.1, -0.8), |
| - | WARNING: Could not locate thirdparty package vrpn, excluding from build | + | scale = 0.3) |
| - | WARNING: Could not locate thirdparty package bullet, excluding from build | + | |
| - | WARNING: Could not locate thirdparty package vorbis, excluding from build | + | app = MyApp() |
| - | WARNING: Could not locate thirdparty package opencv, excluding from build | + | app.run()> |
| - | WARNING: Could not locate thirdparty package rocket, excluding from build | + | </ |
| - | WARNING: Could not locate thirdparty package xf86dga, excluding from build | + | |
| + | Excécution de ce script avec: | ||
| + | python3 hello_world.py | ||
| + | | ||
| + | {{ media_10: | ||
| - | {{tag>panda3D | + | {{tag>moteur_de_jeux |
panda3d_installation_sur_debian.1532432755.txt.gz · Dernière modification : de serge
