从GUI导入*

2024-04-20 11:15:31 发布

您现在位置:Python中文网/ 问答频道 /正文

我在Python 2.7中获得了以下代码:

#!/usr/bin/env python
# -*- coding:utf-8 -*-
import logging
import math
import operator
import pickle
import re
import sys
import threading
import time
import unicodedata
from random import shuffle

import currencylayer
import quandl
import requests
from GUI import *
from arduinoSerial import *
from bs4 import BeautifulSoup
from ledDisplay import *
from timeout import timeout

当我运行它时,会出现一个错误:

from GUI import *
ImportError: No module named GUI

我尝试安装GUI,但无法:

Try to run this command from the system terminal. Make sure that you use the correct version of 'pip' installed for your Python interpreter located at '/home/in/PycharmProjects/untitled/venv/bin/python

我做了什么坏事吗?有人能帮我吗


Tags: the代码fromimportenvbinusrlogging