anocoda & jupyter 导入安装包问题

    xiaoxiao2023-10-27  164

    打开Anaconda Prompt

    1.安装包的方法:conda install package_name 或 pip install package_name(更广泛应用)

    如果报错找不到包,试试前面加个python-

    2.如果说PackagesNotFoundError: The following packages are not available from current channels:

    添加镜像如:

    conda config --append channels conda-forge

    conda install -c conda-forge <package>

     

    最新回复(0)