You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
962 B

---
title: 踩坑日记
date: 2020-10-15 19:48:22
updated: 2022-05-22 11:15:31
tags:
categories: 七七八八
keywords:
description:
top_img:
comments:
cover:
toc:
toc_number:
toc_style_simple:
copyright:
copyright_author:
copyright_author_href:
copyright_url:
copyright_info:
katex: true
highlight_shrink:
aside:
---
### 1. VS Code的markdown图片路径问题
路径开头是
`/`,表示从打开的可视文件夹的根目录开始计算。
`../`,**导航到的路径一定是在可视范围之内,不能跑到根目录之上,vs code会识别不到。例外情况是:jetbrains全家桶都可以正常识别。其它软件未测。**
### 2. import cvxopt --> import cvxopt.base 的时候 ImportError: DLL load failed: 找不到指定的模块
原因: 这是因为numpy版本不对。
cvxopt使用了MKL,所以应该使用链接到英特尔数学库的版本:Numpy+MKL 其在Numpy中包含所需的dll。
>未完待续