似乎是以前的使用方法
sudo add-apt-repository ppa:irie/blender
sudo apt-get update
sudo apt-get install blender
不再有效,因为它包含2.66。可能是因为2.69已经正式发布。无论如何,我从官方网站下载了tar.bz2并将其解压缩,现在我正试图弄清楚如何安装它。
我可以称之为打字
./blender arg1 arg2 ...
从文件夹内部,但我希望能够像以前一样使用它来输入
blender arg1 arg2 ...
从任何地方进入命令行来运行它。有谁知道怎么做?
答案 0 :(得分:0)
您必须将已下载blender的路径添加到路径环境变量
echo 'export PATH=$PATH:/home/joke/3D/blender/blender-2.69-linux-glibc211-x86_64/' >>~/.profile && . ~/.profile
或创建.desktop文件,例如使用以下命令创建文件blender_2.69.desktop:
[Desktop Entry]
Categories=Graphics;3DGraphics;
Comment=3D modeling, animation, rendering and post-production
Exec=/home/joke/3D/blender/blender-2.69-linux-glibc211-x86_64/blender
#--debug
GenericName=3D modeller
Icon=/home/joke/3D/blender/blender-2.69-linux-glibc211-x86_64/icons/256x256/apps/blender.png
MimeType=application/x-blender;
Name=blender 269\s
Path=
StartupNotify=true
Terminal=true
TerminalOptions=
Type=Application
X-DBUS-ServiceName=
X-DBUS-StartupType=
X-KDE-SubstituteUID=false
X-KDE-Username=
Name[it_IT]=blender 269
显然用实际路径取代/home/joke/3D/blender/blender-2.69-linux-glibc211-x86_64/