本文整理汇总了Python中EDUtilsLibraryInstaller.EDUtilsLibraryInstaller.unZipArchive方法的典型用法代码示例。如果您正苦于以下问题:Python EDUtilsLibraryInstaller.unZipArchive方法的具体用法?Python EDUtilsLibraryInstaller.unZipArchive怎么用?Python EDUtilsLibraryInstaller.unZipArchive使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EDUtilsLibraryInstaller.EDUtilsLibraryInstaller
的用法示例。
在下文中一共展示了EDUtilsLibraryInstaller.unZipArchive方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: EDUtilsLibraryInstaller
# 需要导入模块: from EDUtilsLibraryInstaller import EDUtilsLibraryInstaller [as 别名]
# 或者: from EDUtilsLibraryInstaller.EDUtilsLibraryInstaller import unZipArchive [as 别名]
EDVerbose.DEBUG("h5pyLibrary = " + h5pyLibrary)
EDVerbose.DEBUG("hdf5Library = " + hdf5Library)
EDVerbose.DEBUG("laFile = " + laFile)
if __name__ == "__main__":
installDir = os.path.abspath(sys.argv[0]).split(os.sep)[-2]
EDVerbose.screen("Building %s" % installDir)
installHDF5 = EDUtilsLibraryInstaller(installDir, hdf5Library)
hdfPath = installHDF5.searchCLib(laFile)
if hdfPath is None:
print
installHDF5.checkPythonVersion()
installHDF5.getArchitecture()
installHDF5.downloadLibrary()
installHDF5.unZipArchive()
pthreadPath = installHDF5.searchCLib("libpthread.so")
EDVerbose.DEBUG("Libpthread found in %s" % pthreadPath)
if pthreadPath is None:
try:
installHDF5.configure("--prefix=%s" % (installHDF5.getDestinationDirectory()))
except:
EDVerbose.ERROR("Error in the configure step, no pthread")
else:
try:
installHDF5.configure("--prefix=%s --enable-threadsafe --with-pthread=%s" % (installHDF5.getDestinationDirectory(), pthreadPath))
except:
EDVerbose.ERROR("Error in the configure step, with pthread")
try:
installHDF5.make("-j %i" % EDUtilsParallel.detectNumberOfCPUs())
except:
示例2: print
# 需要导入模块: from EDUtilsLibraryInstaller import EDUtilsLibraryInstaller [as 别名]
# 或者: from EDUtilsLibraryInstaller.EDUtilsLibraryInstaller import unZipArchive [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")
示例3: getFortranCompiler
# 需要导入模块: from EDUtilsLibraryInstaller import EDUtilsLibraryInstaller [as 别名]
# 或者: from EDUtilsLibraryInstaller.EDUtilsLibraryInstaller import unZipArchive [as 别名]
fortranCompiler = getFortranCompiler()
installBlas = EDUtilsLibraryInstaller(installDir, blasLibrary)
blasPath = installBlas.searchCLib(libblas)
installLapack = EDUtilsLibraryInstaller(installDir, lapackLibrary)
lapackPath = installLapack.searchCLib(liblapack)
if blasPath is None or lapackPath is None:
if blasPath is None:
EDVerbose.screen("Checking for Blas %s : not found, so I have to compile it myself" % libblas)
else:
EDVerbose.screen("Checking for Blas %s : Found on %s, but I don't trust it because Lapack is missing" % (libblas, blasPath))
libblas = os.path.splitext(libblas)[0] + ".a"
installBlas.checkPythonVersion()
installBlas.getArchitecture()
installBlas.downloadLibrary()
installBlas.unZipArchive()
originalMake = open(os.path.join(installBlas.getSourceDirectory(), "make.inc"), "rb").readlines()
makeFile = open(os.path.join(installBlas.getSourceDirectory(), "make.inc"), "w")
for oneline in originalMake:
if oneline.startswith("FORTRAN"):
makeFile.write("FORTRAN = %s %s" % (fortranCompiler, os.linesep))
elif oneline.startswith("OPTS"):
makeFile.write("%s -fPIC -shared %s" % (oneline.strip(), os.linesep))
elif oneline.startswith("NOOPT"):
makeFile.write("%s -fPIC -shared %s" % (oneline.strip(), os.linesep))
elif oneline.startswith("LOADER"):
makeFile.write("LOADER = %s %s" % (fortranCompiler, os.linesep))
# elif oneline.startswith("ARCHFLAGS"):
# makeFile.write("ARCHFLAGS = -shared -o %s" % (os.linesep))
# elif oneline.startswith("ARCH"):
# makeFile.write("ARCH = %s %s" % (fortranCompiler, os.linesep))