在python安装fenics
时间: 2023-12-05 14:40:17 浏览: 345
安装python
安装FEniCS需要在Linux或MacOS操作系统上进行。以下是安装FEniCS的步骤:
1.添加FEniCS软件源
```shell
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:fenics-packages/fenics
sudo apt-get update
```
2.安装FEniCS
```shell
sudo apt-get install --no-install-recommends fenics
```
3.测试安装是否成功
```shell
fenics-version
```
如果成功安装,将会输出FEniCS的版本号。
注意:如果你使用的是Python3,你需要将Python指向Python3,否则你需要使用Python2来运行FEniCS。
阅读全文