本文整理汇总了Python中EDUtilsLibraryInstaller.EDUtilsLibraryInstaller.getArchitecture方法的典型用法代码示例。如果您正苦于以下问题:Python EDUtilsLibraryInstaller.getArchitecture方法的具体用法?Python EDUtilsLibraryInstaller.getArchitecture怎么用?Python EDUtilsLibraryInstaller.getArchitecture使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EDUtilsLibraryInstaller.EDUtilsLibraryInstaller
的用法示例。
在下文中一共展示了EDUtilsLibraryInstaller.getArchitecture方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: EDUtilsLibraryInstaller
# 需要导入模块: from EDUtilsLibraryInstaller import EDUtilsLibraryInstaller [as 别名]
# 或者: from EDUtilsLibraryInstaller.EDUtilsLibraryInstaller import getArchitecture [as 别名]
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
from EDUtilsPlatform import EDUtilsPlatform
numpyLibrary = "numpy-1.5.1.tar.gz"
if __name__ == "__main__":
installDir = os.path.abspath(sys.argv[0]).split(os.sep)[-2]
EDVerbose.screen("Building %s" % numpyLibrary)
install = EDUtilsLibraryInstaller(installDir, numpyLibrary)
install.checkPythonVersion()
install.getArchitecture()
install.downloadLibrary()
install.getArchiveName()
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"], "libraries", install.getLibraryDirectory(), install.getSourceDirectory(), "build", "temp%s" % EDUtilsPlatform.systemArchitecture[3:], "libnpymath.a")
dest = os.path.join(install.getDestinationDirectory(), "numpy", "core", "lib")#"libnpymath.a")
示例2: and
# 需要导入模块: from EDUtilsLibraryInstaller import EDUtilsLibraryInstaller [as 别名]
# 或者: from EDUtilsLibraryInstaller.EDUtilsLibraryInstaller import getArchitecture [as 别名]
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
__author__ = "Jerome Kieffer"
__contact__ = "[email protected]"
__license__ = "GPLv3+"
__copyright__ = "European Synchrotron Radiation Facility, Grenoble, France"
import os, sys
from EDTestSuite import EDTestSuite
from EDUtilsLibraryInstaller import EDUtilsLibraryInstaller, installLibrary
################################################################################
# AutoBuilder for Numpy, PIL and Fabio
################################################################################
architecture = EDUtilsLibraryInstaller.getArchitecture()
fabioPath = os.path.join(os.environ["EDNA_HOME"], "libraries", "Fabio-r5080", architecture)
imagingPath = os.path.join(os.environ["EDNA_HOME"], "libraries", "20091115-PIL-1.1.7", architecture)
numpyPath = os.path.join(os.environ["EDNA_HOME"], "libraries", "20090405-Numpy-1.3", architecture)
###############################################################################
# Import the right version of PIL
###############################################################################
pydictModulesBeforePIL = sys.modules.copy()
try:
import Image
except Exception:
if os.path.isdir(imagingPath) and (imagingPath not in sys.path):
sys.path.insert(1, imagingPath)
示例3: EDUtilsLibraryInstaller
# 需要导入模块: from EDUtilsLibraryInstaller import EDUtilsLibraryInstaller [as 别名]
# 或者: from EDUtilsLibraryInstaller.EDUtilsLibraryInstaller import getArchitecture [as 别名]
hdf5Library = "hdf5-1.8.5.tar.bz2"
laFile = "libhdf5.la"
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: