在Google-colaboratory中安装“ Ifcopenshell”

时间:2019-03-13 19:41:01

标签: google-colaboratory

我尝试过:导入ifcopenshell

之后,我尝试:!pip install -q ifcopenshell

,然后加上:!apt-get -qq install -y ifcopenshell

在所有三种情况下我都出错:找不到满足ifcopenshell要求的版本(来自版本:) 找不到ifcopenshell的匹配分布

...如何在google-colaboratory中安装“ ifcopenshell”?

预先感谢

3 个答案:

答案 0 :(得分:0)

使用conda

!wget -c https://repo.continuum.io/archive/Anaconda3-5.1.0-Linux-x86_64.sh
!chmod +x Anaconda3-5.1.0-Linux-x86_64.sh
!bash ./Anaconda3-5.1.0-Linux-x86_64.sh -b -f -p /usr/local
!conda install -c conda-forge -c oce -c dlr-sc -c ifcopenshell ifcopenshell

import sys
sys.path.append('/usr/local/lib/python3.6/site-packages/')

答案 1 :(得分:0)

我将其更改为Windows:

!wget -c https://repo.continuum.io/archive/Anaconda2-2018.12-Windows-x86_64.exe !chmod + x Anaconda2-2018.12-Windows-x86_64.exe !bash ./Anaconda2-2018.12-Windows-x86_64.exe -b -f -p / usr / local !conda install -c conda-forge -c oce -c dlr-sc -c ifcopenshell ifcopenshell

导入系统 sys.path.append('/ usr / local / lib / python3.6 / site-packages /')

我收到此消息:

./ Anaconda2-2018.12-Windows-x86_64.exe:./Anaconda2-2018.12-Windows-x86_64.exe:无法执行二进制文件 / bin / bash:conda:找不到命令

答案 2 :(得分:0)

我相信我们必须离开 linux,因为我们正在 google colab 中克隆一个 repo。 只需在 googlecollab 中打开一个笔记本,复制并粘贴预览建议的确切行,然后运行。