本方法适用于Linux环境下: 1.安装库Cython pip3 install Cython==3.0.0a10 2.编写待加密文件:hello.py import random def ac(): i = random.randint(0, 5) if i > 2: print('success') else: print('failure') 3.编写加密脚本 import os import glob from distutils.core import setup from Cytho