我在Windows平台上的计算机上安装了python 3.7.4
。我无法安装dolfin
软件包
pip install dolfin
错误:找不到满足Dolfin要求的版本(来自版本:无) 错误:找不到与Dolfin匹配的分布
答案 0 :(得分:2)
请查看此官方doc,以获取详细指南。
安装后,您需要安装这些python依赖项。
pybind11 (https://github.com/pybind/pybind11)
NumPy (http://www.numpy.org)
答案 1 :(得分:1)
如issue #515中所述,In [6]: sheet1.set_index('Serial#')
In [7]: sheet1['Date of purchase'].fillna(sheet2.set_index('Serial#')['Date of purchase'], inplace=True)
In [8]:
Out[8]:
Date of purchase
Serial#
111 01-Jun-2018
222 13-Jan-2018
333 03-Feb-2019
444 19-Feb-2019
555 11-Dec-2017
是不可能的。
您可能需要查看general documentation或code documentation以获得安装指南。