Dropbox无法以“ VerificationError:导入pylinux…”开头


20

Dropbox无法以“ VerificationError: importing pylinux...” 开头。似乎最近的一些Python更新中断了Dropbox,从而导致以下错误:

Starting Dropbox...Traceback (most recent call last):
File "dropbox/client/main.py", line 13, in 
File "autogen_explicit_imports.py", line 13, in 
File "ui/common/selective_sync.py", line 6, in 
File "arch/__init__.py", line 28, in 
File "arch/linux/tracing.py", line 8, in 
File "hard_trace.py", line 6, in 
File "client_api/connection_hub.py", line 21, in 
File "client_api/kv_connection.py", line 23, in 
File "pylinux/__init__.py", line 71, in 
File "cffi/api.py", line 311, in verify
File "dropbox/overrides.py", line 398, in load_library
File "cffi/verifier.py", line 69, in load_library
File "cffi/verifier.py", line 154, in _load_library
File "cffi/vengine_cpy.py", line 124, in load_library
VerificationError: importing '/home/maythux/pylinux/__pycache__/_cffi__xa0c4f46bx1d95b4de.so': No module named _cffi__xa0c4f46bx1d95b4de

重新安装Dropbox不能解决此问题。

任何想法?!


1
Dropbox版本?操作系统是什么?

Answers:


34

使用Ctrl+ Alt+ T键盘快捷键打开终端并运行以下命令:

sudo rm -rf /var/lib/dropbox/.dropbox-dist
rm -rf ~/.dropbox-dist
dropbox start -i

这将删除下载的Dropbox二进制文件并重新下载它们。下载完成后,Dropbox应该会再次正常启动。

处理时要小心rm -rf


2
只是要清楚:rm -rfremove all the files and folders **r**ecursively and by **f**orce。请注意。您也可以选择重命名文件或将其放入垃圾箱。在这种情况下rm -rf不是问题,但是经验不足的人应该谨慎对待。
don.joey 2014年

4
sudo通常不需要,因为这是您的主文件夹。尽可能避免使用sudo。
弗兰克·舒茨2014年

叹了口气。不幸的是,对我而言,它永远永远位于“正在下载Dropbox ... 100%”。
爱德华·福尔克
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.