最近、システムにArch Linuxをインストールしましたが、ファイルの一部をクラウドと同期できるようにDropboxクライアントをセットアップしたいと思います。 Linux用のDropboxインストーラーをビルドするにはどうすればよいですか? の指示に従って、ソースからクライアントをコンパイルしようとしています。しかし、問題があり、pygtk
をインストールするように指示され、pacmanを使用してインストールしましたが、再起動を実行した後でも次のようになります。
cd ./nautilus-dropbox-2015.10.28; ./configure; make; make install;
次の場合にのみ返されます。
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking build system type... x86_64-unknown-linux-gnu
checking Host system type... x86_64-unknown-linux-gnu
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking whether the Shell understands some XSI constructs... yes
checking whether the Shell understands "+="... yes
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for ar... ar
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for pkg-config... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for NAUTILUS... yes
checking for GLIB... yes
checking for python... /usr/bin/python
checking for rst2man... python rst2man.py
checking for pygtk... no
configure: error: couldn't find pygtk
make: *** No targets specified and no makefile found. Stop.
make: *** No rule to make target 'install'. Stop.
私のシステムは最新ですが、何が欠けていますか?
情報の更新:
念のためオンラインに投稿したくないシステム構成情報がたくさんあるので、ログ全体を提供したくはありませんが、要求されたconfig.log
の関連部分であると私が信じているものは次のとおりです。
configure:10713: checking for python
configure:10731: found /usr/bin/python
configure:10743: result: /usr/bin/python
configure:10754: checking for rst2man
configure:10785: result: python rst2man.py
configure:10799: checking for pygtk
configure:10812: result: no
configure:10814: error: couldn't find pygtk
しかし、このエラーメッセージは、問題が何であるか、およびpygtk
が見つからない理由を理解するのに実際には役立ちません。
同じ問題に遭遇しました。シンボリックリンクをポイントpython
からpython2.7
に変更してもうまくいきませんでした。
私にとってうまくいったのは、次のコマンドを実行して、python2
フォルダー内の各ファイル内で出現するすべてのpython
をnautilus-dropbox-2.10.0
に置き換えることでした。
grep -rl python . | xargs sed -i 's/python/python2/g'
その後、通常どおりconfigure
、make
、およびmake install
コマンドを実行しました。
同じことを試しているときにこの質問に出くわしましたが、なぜこれが起こっているのかはわかっていると思います。
Arch Linuxでは、他のほとんどすべてのLinux OSとは異なり、Pythonを実行するとPython 2ではなくPython 3が呼び出されます。I Arch Linuxが本当に好きですが、なぜPython 2がデフォルトではないのか、正直なところわかりません。これは、ソースからビルドするプロセス全体を複雑にするだけです。おそらくpython
symlinkは、Python 2を指しているため、他のすべてを台無しにする可能性があります。
とにかく、私はconfigure
を調べ、Python内にインポートしようとしてpygtkをチェックします。 Python 2、import pygtk
の実行は機能しますが、Python 3、実行するとエラーが発生します。
>>> import pygtk
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'pygtk'
では、これをどのように解決しますか?よくわかりません。ドロップボックス内でのみpython2
を指すようにPYTHON
変数を変更しようとしましたが、これは機能しないようです。
元の質問に対する答えは、python
が/usr/bin/python3
を指しているため、何も欠落しておらず、機能していないということです。
configure
がPython 3であり、Python 2ではない)を呼び出しているとおっしゃっていたので、私はなんとか問題を解決できました。
バイナリフォルダ_cd /usr/bin
_に移動し、シンボリックリンクをPython 3からPython 2に変更して、インストールが完了したら復元するためのバックアップを保持します。コンプリート:
_Sudo mv python python.old
Sudo ln -s python2.7 python
_
その後、パッケージフォルダーに戻り、make
を実行してDropboxをビルドできます。終了したら、シンボリックリンクをPython 3に戻す必要があります。そうしないと、システムにいくつかの問題が発生します。
_cd /usr/bin
Sudo mv python.old python
_
ドロップボックスアプリに、_/usr/bin/python
_シンボリックリンクをたどらず、代わりに既存の_/usr/bin/python2
_シンボリックリンクをたどるように指示する必要があります。これを行うには、お気に入りのテキストエディタで_/usr/bin/dropbox
_ファイルを開き(Sudo
を使用しないと編集できません)、最初の行を_#!/usr/bin/python
_から_#!/usr/bin/python2
_。
これで、互換性の問題なしに_dropbox start
_と入力して、DropboxAPIを起動できるようになります。
config.log
を見てください。これには、configure
が実行した内容の詳細なトランスクリプトが含まれています。そうすれば、「pygtkのチェック」の背後にある詳細と「いいえ」の詳細を取得できます。最後の数行は関連するものです。問題は、「pygtkのチェック」を含む行の後に始まります。
通常、問題を理解するにはconfig.log
の内容で十分です。そうでない場合は、質問に追加してください。
リモートのCentOS7マシンでDropbox( https://linux.dropbox.com/packages/nautilus-dropbox-2.10.0.tar.bz2 )をビルドしているときに、この記事を見つけました。
Yum install pygtk2 pygtk2-develを使用してpygtkをインストールしましたが、。/ configureコマンドは次のステートメントで終了します。
checking for pygtk... no
configure: error: couldn't find pygtk
A pythonプロンプトを開いてgtkを手動でインポートすると、次の理由がわかります。
[user@computer ~]# python
Python 2.7.5 (default, Jun 20 2019, 20:27:34)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-36)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import gtk
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib64/python2.7/site-packages/gtk-2.0/gtk/__init__.py", line 64, in <module>
_init()
File "/usr/lib64/python2.7/site-packages/gtk-2.0/gtk/__init__.py", line 52, in _init
_gtk.init_check()
RuntimeError: could not open display
>>>
Gtkをインポートするには、有効なDISPLAYセットが必要なようです。
-x(X11転送)を使用してsshセッションを開始すると、この部分が機能します。
私は最近これに出くわしました、そして私が見つけたのは(前の答えで提案されたものは別として)configureスクリプトはgtkモジュールをインポートしようとしますがpygtk予想通り。
$as_echo_n "checking for pygtk... " >&6; }
cat <<EOF | python
try:
import gtk
except:
exit(1)
else:
回避策は、その行のpygtkをde gtkに置き換えることです。
sed -i 's/ gtk/ pygtk/g' nautilus-dropbox-2.10.0/configure
元の質問と同じパッケージバージョンではないことはわかっていますが、エラーメッセージは同じであるため、この同じ質問に向けられた人にとっては役立つ可能性があります。