本文整理汇总了Python中EDUtilsLibraryInstaller.EDUtilsLibraryInstaller.getSourceDirectory方法的典型用法代码示例。如果您正苦于以下问题:Python EDUtilsLibraryInstaller.getSourceDirectory方法的具体用法?Python EDUtilsLibraryInstaller.getSourceDirectory怎么用?Python EDUtilsLibraryInstaller.getSourceDirectory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EDUtilsLibraryInstaller.EDUtilsLibraryInstaller
的用法示例。
在下文中一共展示了EDUtilsLibraryInstaller.getSourceDirectory方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: EDUtilsLibraryInstaller
# 需要导入模块: from EDUtilsLibraryInstaller import EDUtilsLibraryInstaller [as 别名]
# 或者: from EDUtilsLibraryInstaller.EDUtilsLibraryInstaller import getSourceDirectory [as 别名]
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))
# elif oneline.startswith("RANLIB"):
示例2: print
# 需要导入模块: from EDUtilsLibraryInstaller import EDUtilsLibraryInstaller [as 别名]
# 或者: from EDUtilsLibraryInstaller.EDUtilsLibraryInstaller import getSourceDirectory [as 别名]
install.unZipArchive()
install.buildSources()
install.installBuilt()
install.installSources()
# Install f2py by hand !!!!
install.installGeneric(None, os.path.join("numpy", "f2py", "src"))
install.installGeneric(None, os.path.join("numpy", "core", "include"))
# Install npymath by hand
src = os.path.join(
os.environ["EDNA_HOME"],
"edna-libraries",
install.getLibraryDirectory(),
install.getSourceDirectory(),
"build",
"temp%s" % EDUtilsPlatform.systemArchitecture[3:],
"libnpymath.a",
)
dest = os.path.join(install.getDestinationDirectory(), "numpy", "core", "lib") # "libnpymath.a")
EDVerbose.DEBUG("cp %s %s" % (src, dest))
if not os.path.isdir(dest):
os.makedirs(dest)
shutil.move(src, dest)
install.cleanSources()
else:
print("This installer program is not made to be imported, please just run it")