本文整理汇总了Python中EDUtilsLibraryInstaller.EDUtilsLibraryInstaller.checkPythonVersion方法的典型用法代码示例。如果您正苦于以下问题:Python EDUtilsLibraryInstaller.checkPythonVersion方法的具体用法?Python EDUtilsLibraryInstaller.checkPythonVersion怎么用?Python EDUtilsLibraryInstaller.checkPythonVersion使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EDUtilsLibraryInstaller.EDUtilsLibraryInstaller
的用法示例。
在下文中一共展示了EDUtilsLibraryInstaller.checkPythonVersion方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: print
# 需要导入模块: from EDUtilsLibraryInstaller import EDUtilsLibraryInstaller [as 别名]
# 或者: from EDUtilsLibraryInstaller.EDUtilsLibraryInstaller import checkPythonVersion [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 checkPythonVersion [as 别名]
import numpy.distutils.fcompiler
compilerEXE = numpy.distutils.fcompiler.find_executable("g77")
if compilerEXE is None:
compilerEXE = numpy.distutils.fcompiler.find_executable("gfortran")
if compilerEXE is None:
compilerEXE = numpy.distutils.fcompiler.find_executable("g95")
if compilerEXE is None:
EDVerbose.ERROR("No Fortran compiler found among g77, gfortran, g95")
return compilerEXE
if __name__ == "__main__":
installDir = os.path.abspath(sys.argv[0]).split(os.sep)[-2]
EDVerbose.screen("Building %s" % scipyLibrary)
install = EDUtilsLibraryInstaller(installDir, scipyLibrary)
install.checkPythonVersion()
install.getArchitecture()
install.downloadLibrary()
install.getArchiveName()
install.dependency("numpy", numpyDir, _tupleVersion=(1, 4, 0), _strMethodToGetVersion="version.version")
numpyFullPath = os.path.join(os.environ["EDNA_HOME"], "libraries", numpyDir, install.getArchitecture())
if os.path.isdir(numpyFullPath):
sys.path.insert(1, numpyFullPath)
if "PYTHONPATH" in os.environ:
os.environ["PYTHONPATH"] = numpyFullPath + os.pathsep + os.environ["PYTHONPATH"]
else:
os.environ["PYTHONPATH"] = numpyFullPath
fortranCompiler = getFortranCompiler()
installBlas = EDUtilsLibraryInstaller(installDir, blasLibrary)
blasPath = installBlas.searchCLib(libblas)