我的脚本有以下依赖关系
from sqlalchemy import create_engine
import pandas as pd
import numpy as np
from scipy import sparse
from sklearn import neighbors
import itertools
import math
import time
PATH_XGBOOST = "./xgboost/wrapper/"
PATH_MODEL = './models/model.model'
import sys
sys.path.insert(1,PATH_XGBOOST)
import xgboost as xgb
对于这个脚本,我想包装所有的东西并在没有任何软件包或库安装的情况下在另一台机器上运行它,但只安装了python。 (最好是在Linux上运行并在Windows上运行)有没有办法这样做?至于我搜索有pyinstaller和py2exe但我无法处理它们,我想由于xgboost libaray。