こちらのサイト様を参考に、CentOSサーバへrdiff-backupをインストールしようとしています。
パッケージを解凍し、Pythonにてinstallを実行しましたが、以下のエラーが出てしまいます。
sudo python setup.py install --prefix=/usr/local
File "setup.py", line 81
with open(infile, "r") as infp, open(outfile, "w") as outfp:
SyntaxError: invalid syntax
該当のsetup.pyの81行目を確認したところ、以下の様なコードでした。
インストールの為には、設定の変更や別パッケージのインストールが必要となるのでしょうか……。
python
1 def make_template(self, infile, outfile, repl_dict={}): 2 """A helper function replacing {{ place_holders }} defined in repl_dict, 3 creating the outfile out of the source template file infile.""" 4 self.mkpath(os.path.dirname(outfile)) 5 with open(infile, "r") as infp, open(outfile, "w") as outfp: 6 for line in infp: 7 if ("{{" in line):
CentOSサーバの設定については、今回が初めての着手です。
質問の要領を得ていなかったり、基礎的な部分が抜けておりましたら申し訳ございません。
以下が今回rdiff-backupを設定している環境スペックです。
お手数ですが、お力を貸していただけますと幸いでございます。
CentOS :CentOS release 6.5 (Final)
rdiff-backup :rdiff-backup-2.0.5(https://github.com/rdiff-backup/rdiff-backup/releasesより)
Python :Python2.6(デフォルトでインストールされていたもの、インストール先→/usr/lib64/python2.6)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/14 02:31
2020/12/14 03:09