I've use the Ubuntu 14.04. Know anyone how can I install the latest version of blender from terminal? And after that how can I make cycle render work?
2 Answers
I don't have any experience the terminal, but you might be able to achieve the same effect by using Steam. Blender can be downloaded for linux on Steam, which should setup a desktop icon as well.
I hope this helps, my experience with linux is rather limited (:
- 98
- 8
It sounds to me like you're asking for the package management command to revert to an older package. apt caches versions of packages and repositories often keep legacy packages around after an upgrade.
sudo apt-get install <package-name>=<package-version-number>
OR
sudo apt-get -t=<target release> install <package-name>
will install a specific version of the package in question (downgrade, upgrade, different architecture, etc).
To see all available versions of the package, run apt-cache showpkg <package-name>
If you wish to freeze a package at that specific version, run apt-mark hold <package-name>
This answer was adapted from Ask Ubuntu
- 1,563
- 1
- 9
- 20
.exeon linux ;) – gandalf3 Aug 13 '15 at 00:15