本文介绍了我已经安装了一个python库但是dreampie不会导入它的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经在python3.3中安装了一个python库.当我在 Dreampie 中运行解释器时,它找不到我新安装的库,导致错误如下:

>>>从 bs4 导入 BeautifulSoup回溯(最近一次调用最后一次):文件<pyshell#4>",第 1 行,在 <module> 中从 bs4 导入 BeautifulSoup导入错误:没有名为bs4"的模块
解决方案

这是一个 Dreampie 1.2.1 错误.要解决此问题,请在 Edit | 下偏好 |Shell,在黑框中的自动运行代码中添加以下行:

导入站点站点.main()

I have installed a python library in python3.3. When I run the interpreter in Dreampie, it can't find my newly-installed library, resulting in an error like:

>>> from bs4 import BeautifulSoup
Traceback (most recent call last):
  File "<pyshell#4>", line 1, in <module>
    from bs4 import BeautifulSoup
ImportError: No module named 'bs4'
解决方案

This is a dreampie 1.2.1 bug. To work around it, under Edit | Preferences | Shell, add the following line to the automatically-run code in the black box:

import site
site.main()

这篇关于我已经安装了一个python库但是dreampie不会导入它的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-04 23:15