web-dev-qa-db-ja.com

PPAから最新のBlender 3Dビルドをインストールするにはどうすればよいですか?

私の問題は、最新のブレンダーをインストールし、Sudo apt-get update && Sudo apt-get upgrade経由で自動的にアップグレードしたいということです。だから、私はリポジトリを追加しようとしました

Sudo add-apt-repository ppa:cheleb/blender-svn 
Sudo apt-get update
Sudo apt-get install blender

したがって、ターミナルで最初の行が実行された後、それは私に与えます:

You are about to add the following PPA to your system:
 tag:launchpad.net:2008:redacted
 More info: https://launchpad.net/~cheleb/+archive/blender-svn
Press [ENTER] to continue or ctrl-c to cancel adding it

 Executing: gpg --ignore-time-conflict --no-options
 --no-default-keyring --secret-keyring /tmp/tmp.pvnVePB2Fl --trustdb-name /etc/apt/trustdb.gpg --keyring /etc/apt/trusted.gpg --primary-keyring /etc/apt/trusted.gpg --keyserver hkp://keyserver.ubuntu.com:80/ --recv tag:launchpad.net:2008:redacted
 gpg: "tag:launchpad.net:2008:redacted" not a key ID: skipping

そして、私が2行目を実行しているとき、それは私に与えます:

W: Failed to fetch http://ppa.launchpad.net/cheleb/blender-svn/ubuntu/dists/precise/main/source/Sources  404  Not Found

W: Failed to fetch
http://ppa.launchpad.net/cheleb/blender-svn/ubuntu/dists/precise/main/binary-AMD64/Packages
404  Not Found

W: Failed to fetch
 http://ppa.launchpad.net/cheleb/blender-svn/ubuntu/dists/precise/main/binary-i386/Packages
 404  Not Found

E: Some index files failed to download. They have been ignored, or old
ones used instead.

Q:このPPAが機能しない理由と、ブレンダーが自動的に更新されるようにするにはどうすればよいですか!?!

6
gabriel

あなたが実際にリンクをクリックした場合、理由を見つけることができますが、アドレスは存在しません。

そして、ランチパッドページにアクセスすると、 https://launchpad.net/~cheleb/+archive/blender-svn にアクセスできないことがわかります。

@PhoneixSはPPA RalfHölzemer(cheleb)のメンテナーに尋ねて、「。..そのPPAをこれ以上維持できない」と言いました。


ただし、この他のPPAからインストールできます。

https://launchpad.net/~thomas-schiex/+archive/ubuntu/blender

Sudo add-apt-repository ppa:thomas-schiex/blender
Sudo apt-get update
Sudo apt-get install blender

ビルドは最新であるため、最新のBlenderを引き続き入手できます。

ここでは、SVNからBlenderをコンパイルする方法に関する指示を見つけることができます。

http://wiki.blender.org/index.php/Dev:2.5/Doc/Building_Blender/Linux/Ubuntu/CMake

12
Uri Herrera

そして今、Irie PPAはもう更新されていないので、最新バージョン(毎週更新)を取得するために、代わりにこれを使用できます:

Sudo add-apt-repository ppa:thomas-schiex/blender
Sudo apt-get update
Sudo apt-get install blender
6
user227588