本文整理汇总了Python中EDUtilsLibraryInstaller.EDUtilsLibraryInstaller.buildSources方法的典型用法代码示例。如果您正苦于以下问题:Python EDUtilsLibraryInstaller.buildSources方法的具体用法?Python EDUtilsLibraryInstaller.buildSources怎么用?Python EDUtilsLibraryInstaller.buildSources使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EDUtilsLibraryInstaller.EDUtilsLibraryInstaller
的用法示例。
在下文中一共展示了EDUtilsLibraryInstaller.buildSources方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: print
# 需要导入模块: from EDUtilsLibraryInstaller import EDUtilsLibraryInstaller [as 别名]
# 或者: from EDUtilsLibraryInstaller.EDUtilsLibraryInstaller import buildSources [as 别名]
if "EDNA_HOME" in os.environ:
if os.environ["EDNA_HOME"] != strEdnaHome:
print("Warning: EDNA_HOME redefined to %s" % strEdnaHome)
os.environ["EDNA_HOME"] = strEdnaHome
else:
os.environ["EDNA_HOME"] = strEdnaHome
sys.path.append(os.path.join(os.environ["EDNA_HOME"], "kernel", "src"))
from EDUtilsLibraryInstaller import EDUtilsLibraryInstaller
from EDVerbose import EDVerbose
if __name__ == "__main__":
installDir = os.path.abspath(sys.argv[0]).split(os.sep)[-2]
EDVerbose.screen("Building %s" % installDir)
install = EDUtilsLibraryInstaller(installDir, strArchiveName)
install.checkPythonVersion()
install.downloadLibrary()
install.dependency("numpy", "20090405-Numpy-1.3")
install.unZipArchive()
try:
install.buildSources()
except Exception:
EDVerbose.ERROR("Error in the build")
install.installBuilt()
if not EDVerbose.isVerboseDebug():
install.cleanSources()
else:
EDVerbose.ERROR("This installer program is not made to be imported, please just run it")
示例2: EDUtilsLibraryInstaller
# 需要导入模块: from EDUtilsLibraryInstaller import EDUtilsLibraryInstaller [as 别名]
# 或者: from EDUtilsLibraryInstaller.EDUtilsLibraryInstaller import buildSources [as 别名]
installHDF5.make("-j %i" % EDUtilsParallel.detectNumberOfCPUs())
except:
EDVerbose.ERROR("Error in the 'make' step")
try:
installHDF5.make("install")
except:
EDVerbose.ERROR("Error in the 'make install' step")
hdfPath = installHDF5.getDestinationDirectory()
installHDF5.cleanSources()
else:
hdfPath = os.path.dirname(hdfPath)
EDVerbose.DEBUG("Building H5Py with HDF5 library from %s " % (hdfPath))
install = EDUtilsLibraryInstaller(installDir, h5pyLibrary)
install.checkPythonVersion()
install.dependency("numpy", "20090405-Numpy-1.3")
install.downloadLibrary()
install.getArchiveName()
install.unZipArchive()
try:
install.buildSources("--hdf5=%s" % hdfPath)
except:
EDVerbose.ERROR("Error in the building of %s" % (h5pyLibrary))
sys.exit(0)
install.installBuilt()
if not EDVerbose.isVerboseDebug():
install.cleanSources()
else:
EDVerbose.ERROR("This installer program is not made to be imported, please just run it")