我在Visual Studio 2017中有以下标题
import numpy as np
import h5py
import socketserver
import struct
from threading import Thread
此源代码将传输到我的Raspberry Pi Stretch,但由于缺少文件而无法执行。我设法修复到h5py。现在,我被困住了。哪里可以找到socketserver,struct和thread的包?
我尝试做sudo apt-get install socketserver但是找不到它。与他人相同
答案 0 :(得分:2)
socketserver
,struct
和threading
都是Python标准库模块,因此,由于您运行的是基于Debian的发行版,因此无需安装任何外部程序包即可获取它们。
但是,socketserver
是一个Python 3模块,因此在Python 2中不可用。也许这是您面临的问题?
您使用哪个Python版本来运行脚本?
粘贴错误消息会有所帮助。