我想要做的是在ABAQUS CAE包中的python发行版中安装Pandas包。
// init title
mViewPager.setCurrentItem(i);
// update title
mViewPager.setOnPageChangeListener(new OnPageChangeListener() {
@Override
public void onPageSelected(int pos) {
setTitle(...);
}
});
我面临的主要问题是获得旧版numpy Python 2.7.3 (default, Oct 4 2012, 15:15:08) [MSC v.1600 64 bit (AMD64)] on win32
,因为pandas需要(1.8.2 max),
,但ABAQUS也要求在版本numpy >= 1.7.2
之后停止使用多阵列包。
我设法在python环境中安装pip,但是当试图获取numpy 1.9.0
的任何旧版本时,它崩溃了,因为repo上没有x64可用模块。这是给出的错误代码。
numpy (1.7.0 - 1.8.2)
我已成功运行x64 Python环境,并通过 Rolling back uninstall of numpy
Command "C:\SIMULIA\Abaqus\6.14-3\tools\SMApy\python2.7\python.exe -u -c
"import setuptools,
tokenize;__file__='c:\\users\\cris\\appdata\\local\\temp\\pip-build-gcrgtg\\numpy\\setup.py';exec(compile(getattr(tokenize,
'open', open)(__file__).read().replace('\r\n', '\n'), __file__,
'exec'))" install --record
c:\users\cris\appdata\local\temp\pip-xjzhpa-record\install-record.txt
--single-version-externally-managed --compile" failed with error code 1 in c:\users\cris\appdata\local\temp\pip-build-gcrgtg\numpy\
获取numpy 1.7.0
个包。但是我试图将该方法应用于ABAQUS中嵌入的Python环境是不成功的。
然后,我如何在x64 Python环境中安装旧版本的conda
?