本文介绍了ImportError:无法导入名称"_BACKCOMPAT_MAGIC_NUMBER"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

尝试使用pip进行安装刚安装了另一个版本的python(3.4)得到错误

Trying to use pip to install just installed another version of python (3.4)get error

ImportError: cannot import name '_BACKCOMPAT_MAGIC_NUMBER'

推荐答案

在我的情况下,我使用的是pipenv,解决方法是删除virtualenv并重新安装依赖项:

In my case, I was using pipenv, and the fix was to delete the virtualenv and reinstall the dependencies:

$ pipenv --rm
$ pipenv install

这篇关于ImportError:无法导入名称"_BACKCOMPAT_MAGIC_NUMBER"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 22:26