本文整理匯總了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")