0%

jetson lt4 docker安装遇到的问题

  1. swig(pyrfr)

    1
    apt-get install swig --fix-missing

    若提示

    1
    2
    3
    4
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    E: Unable to locate package swig

    先更新源:

    1
    apt-get update

    再安装swig。

  2. lazy_import-0.2.2(auto-sklearn)

    vim setup.py

    1
    with open('README.rst') as infile:

    改为:

    1
    with open('README.rst', encoding='utf-8') as infile:

    python setup.py install

  3. 升级cmake(xgboost)

  4. numpy==1.19.4

    1.19.5暂时会有bug。报错

    1
    2
    >>> import numpy as np
    Illegal instruction (core dumped)