1. filenotfounderror: [errno 2] no such file or directory: 'dot'
executablenotfound: failed to execute ['dot', '-tpdf', '-o', 'plot.**'], make sure the graphviz executables are on your systems' path
sudo apt-get install graphviz
2.ubuntu20編譯gmssl時,提示錯誤:
"glob" is not exported by the file::glob module
can't continue after import errors at ./configure line 18.
begin failed--compilation aborted at ./configure line 18.
解決:修改configure和test/build.info檔案,把qw/glob改為qw/:glob。
3. go **的問題
解決:或者go env -w goproxy=
或者export goproxy=
參考:/
4. win10命令列終端執行閃退
修改登錄檔hkey_current_user/software/microsoft/command processor/autorun項,刪除atuorun鍵值裡面的exit。
5. importerror: dll load failed while importing win32api: 找不到指定的模組
找到檔案pywin32_postinstall.py,一般在安裝檔案下的scripts檔案裡。
執行python pywin32_postinstall.py -install
6. ubuntu下error occurred during the signature verification 解決辦法
sudo apt-get clean
cd /var/lib/apt
sudo mv lists lists.old
sudo mkdir -p lists/partial
sudo apt-get clean
sudo apt-get update
echo 1 > /var/lib/dpkg/info/format
7. import mxnet時,出錯oserror: libnccl.so.2: cannot open shared object file: no such file or directory
安裝library (nccl):
預編譯處理 error和 line
error用於生成乙個編譯錯誤訊息 用法 error message message不需要用雙引號包圍 error編譯指示字用於自定義程式設計師特有的編譯錯誤訊息。類似的,warning用於生成編譯警告。error是一種與編譯器指示字 error可用於提示編譯條件是否滿足 error this fi...
C中 error和 line預處理
error用於自定義一條編譯錯誤 warning用於自定義一條編譯警告資訊 error和 warning常用於條件編譯的情形 line用於強制指定新的行號和編譯檔名 error預處理指令的作用是 編譯程式時,只要遇到 error就會生成乙個編譯錯誤提示資訊,並停止編譯。其語法格式為 error er...
C語言 error預處理
error 預處理指令的作用是,編譯程式時,只要遇到 error 就會生成乙個編譯錯誤提示訊息,並停止編譯。其語法格式為 error error message該預處理器指令看似無用,因為一旦遇到它,程式的編譯過程就會出錯,無法完成編譯。那麼它應該用在什麼場合呢?include stdio.h in...