64系统blender中文口口
Tofloor
poster avatar
js2fj5zqh
deepin
2013-12-23 05:20
Author
在软件中心里安装的blender,但系统设置改成中文,全变成口口,是少么字体吗?微软雅黑是装了。simsun的3个也装了。
多谢。
Reply Favorite View the author
All Replies
electricface
deepin
2013-12-23 05:22
#1
需要去官网下载最新的blender
Reply View the author
js2fj5zqh
deepin
2013-12-24 17:32
#2
已经重装,很好用。
我装的UG,在桌面用更改其他软件启动图标可以启动,但了BLENDER更改后不能用。我把wps的命令改成~/blender-2.69-linux-glibc211-x86_64/blender
应怎么做?
如果想把图标加到启动器的图形图像分类中又该怎么办?
Reply View the author
electricface
deepin
2013-12-24 19:30
#3
运行这个脚本吧
  1. #!/bin/bash
  2. APP=$HOME/.local/share/applications
  3. cd $APP
  4. cat > blender-2.69.desktop <<==
  5. [Desktop Entry]
  6. Name=blender 2.69
  7. Icon=blender
  8. Exec=$HOME/blender-2.69-linux-glibc211-x86_64/blender
  9. Type=Application
  10. Categories=Graphics;
  11. StartupNotify=false
  12. Terminal=false
  13. ==
Copy the Code
Reply View the author
js2fj5zqh
deepin
2013-12-25 17:19
#4
我在桌面新建了文本文件,把上面的脚本内容粘贴进去,加入可执行权限,运行没反应。
我直接把脚本改成了:
   #!/bin/bash
        APP=$HOME/blender-2.69-linux-glibc211-x86_64
        cd $APP
        ./blender
反正在桌面能直接启动就行了,难看点。
我这脚本能行,如前面直接改就不行。是不是linux和当年用的dos一样有当前目录的概念。
Reply View the author
cxbii
deepin
2013-12-25 18:26
#5
我在桌面新建了文本文件,把上面的脚本内容粘贴进去,加入可执行权限,运行没反应。
我直接把脚本改成了:
   #!/bin/bash
        APP=$HOME/blender-2.69-linux-glibc211-x86_64
        cd $APP
        ./blender
反正在桌面能直接启动就行了,难看点。
我这脚本能行,如前面直接改就不行。是不是linux和当年用的dos一样有当前目录的概念。
linux是什么都是文件。。。
Reply View the author
electricface
deepin
2013-12-25 19:10
#6
将这个脚本复制粘贴到终端运行,就会写出一个  blender-2.69.desktop 文件来的。
Reply View the author
js2fj5zqh
deepin
2013-12-26 16:40
#7
好用,不过还得从~/.local/share/application/下再cp到桌面,前面还以为执行完就在桌面了呢.
这新建快捷方式得像win中一样才方便.
Reply View the author
electricface
deepin
2013-12-26 16:57
#8
执行完之后就会出现在启动器里面呢。
Reply View the author