我有一个python文件,该文件使用自定义bokeh扩展名生成surface3d图,并使用export_png将其转换为png。该可执行文件可以在我的当前系统上成功运行,但是当我将其移动到没有anaconda的系统时,出现以下错误。 RuntimeError:需要node.js v10.13.0或更高版本才能允许编译自定义模型(“ conda install nodejs”或遵循https://nodejs.org/en/download/)[6128]无法执行脚本CMM
我在代码中使用以下库:
import scipy.linalg
import scipy.interpolate
import numpy as np
import csv
import pandas as pd
import glob
import fire
from bokeh.plotting import figure, output_file, save, show
from bokeh.layouts import gridplot, row, column
from bokeh.core.properties import Instance, String
from bokeh.models import ColumnDataSource, LayoutDOM, ColorBar, Div
from bokeh.util.compiler import TypeScript
import os
import sys
我需要一个独立的可执行文件。有办法让pyinstaller在生成可执行文件时包括它吗?这是我用来生成exe文件的代码:
pyinstaller --hidden-import=pkg_resources.py2_warn --onefile Q:\Test\CMM.py