第一步处理依赖关系 https://docs.cocotb.org/en/stable/install.html
非常重要的软件系统依赖关系 The installation instructions vary depending on your operating system:
conda install -c msys2 m2-base m2-make
这条命令很重要,否则会出现下面的错误很难处理,网上的一堆处理都是无效 error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\x86_amd64\\cl.exe' failed with exit code 2
第二步安装cocotb
使用上面的命令处理完依赖关系之后,再安装 pip install cocotb 这时候报错 Microsoft Visual Studio 14.0需要安装
第三步安装visual studio installer
https://visualstudio.microsoft.com/zh-hans/downloads/ 下载Visual Studio Community 2022。 VisualStudioSetup.exe
不要使用网上的安装vs2015这些,还是会出现cl.exe' failed with exit code 2的问题
第四步安装必须组件
启动VisualStudioSetup.exe 在单个组件下选中两个组件进行安装 1、windows 10 sdk(10.0.19041.0) 19041安装的win10系统版本号,可以通过桌面 电脑 属性 查看操作系统内部版本号 2、msvc v143 -vs 2022 c++ x64/x86生成工具(最新) 安装完成之后
第五步继续安装cocotb
pip install cocotb 成功 查看安装cocotb版本号。 cocotb-config -v
也可以参考 https://blog.csdn.net/qq_41713871/article/details/121015687
|