`$ D:\Anaconda\Scripts\conda-script.py install nsst` environment variables: conda info could not be constructed. KeyError('pkgs_dirs') An unexpected error has occurred. Conda has prepared the above report. If submitted, this report will be used by core maintainers to improve future releases of conda. Would you like conda to send this report to the core maintainers? [y/N]: y Upload successful. Thank you for helping to improve conda. Opt-in to always sending reports (and not see this message again) by running $ conda config --set report_errors true
时间: 2024-04-28 18:21:23 浏览: 400
这是一个安装命令,使用了 Anaconda 中的 conda 包管理器来安装名为 nsst 的软件包。不过,命令执行时出现了一个错误,指出 conda info 无法构建,可能是由于缺少 pkgs_dirs 环境变量导致的。Conda 报告了这个错误并询问是否将报告发送给核心维护人员以改进未来版本的 conda。如果你想要发送报告并帮助改进 conda,就输入 y,否则输入 N。如果想要一直发送报告并不再看到这个消息,可以运行 conda config --set report_errors true。
相关问题
ERROR during elevated execution. rc: [WinError 0] 操作成功完成。 no change d:\py\Anaconda3\Scripts\conda.exe no change d:\py\Anaconda3\Scripts\conda-env.exe no change d:\py\Anaconda3\Scripts\conda-script.py no change d:\py\Anaconda3\Scripts\conda-env-script.py no change d:\py\Anaconda3\condabin\conda.bat no change d:\py\Anaconda3\Library\bin\conda.bat no change d:\py\Anaconda3\condabin\_conda_activate.bat no change d:\py\Anaconda3\condabin\rename_tmp.bat no change d:\py\Anaconda3\condabin\conda_auto_activate.bat no change d:\py\Anaconda3\condabin\conda_hook.bat no change d:\py\Anaconda3\Scripts\activate.bat no change d:\py\Anaconda3\condabin\activate.bat no change d:\py\Anaconda3\condabin\deactivate.bat no change d:\py\Anaconda3\Scripts\activate no change d:\py\Anaconda3\Scripts\deactivate no change d:\py\Anaconda3\etc\profile.d\conda.sh no change d:\py\Anaconda3\etc\fish\conf.d\conda.fish no change d:\py\Anaconda3\shell\condabin\Conda.psm1 no change d:\py\Anaconda3\shell\condabin\conda-hook.ps1 no change d:\py\Anaconda3\Lib\site-packages\xontrib\conda.xsh no change d:\py\Anaconda3\etc\profile.d\conda.csh needs sudo C:\Users\С���㰮ð��\Documents\WindowsPowerShell\profile.ps1 no change HKEY_CURRENT_USER\Software\Microsoft\Command Processor\AutoRun No action taken. Operation failed.
这个错误消息中显示了一些文件和目录,以及它们的状态。根据消息中的信息,似乎是在尝试执行某个操作时出现了问题。
根据消息中的最后几行,可以看到一些文件或目录需要sudo权限,而且操作失败了。另外,还有一个文件的路径包含了一些无法正常显示的字符。
建议你尝试以下步骤来解决这个问题:
1. 首先,尝试以管理员权限重新运行该操作。右键点击命令行或终端窗口,选择“以管理员身份运行”,然后再次执行操作。
2. 如果仍然出现问题,可以尝试手动检查和修复所列出的文件和目录的权限。确保你具有适当的权限来读取、写入或执行这些文件。
3. 对于包含无法正常显示字符的文件路径,请确保路径中的每个字符都是有效的,并且没有任何多余或错误的字符。
如果问题仍然存在,请提供更多详细信息,以便我能够更好地帮助你解决这个问题。
PackagesNotFoundError: The following packages are not available from current channels: - nsst Current channels: - https://conda.anaconda.org/conda-forge/win-64 - https://conda.anaconda.org/conda-forge/noarch - https://repo.anaconda.com/pkgs/main/win-64 - https://repo.anaconda.com/pkgs/main/noarch - https://repo.anaconda.com/pkgs/r/win-64 - https://repo.anaconda.com/pkgs/r/noarch - https://repo.anaconda.com/pkgs/msys2/win-64 - https://repo.anaconda.com/pkgs/msys2/noarch To search for alternate channels that may provide the conda package you're looking for, navigate to https://anaconda.org and use the search bar at the top of the page.
这个错误提示说明在当前的channels中没有找到名为nsst的包。可能是因为conda-forge仓库中没有提供nsst包,或者你的channels配置不正确。
你可以尝试执行以下命令更新channels并安装nsst包:
```
conda config --add channels conda-forge
conda config --set channel_priority strict
conda update --all
conda install nsst
```
其中,`--set channel_priority strict`命令将设置channel的优先级为严格模式,这样可以避免包冲突。执行完上述命令后,重新安装nsst包。如果还是无法安装,可以根据错误提示中提供的链接搜索可用的channels并尝试安装。
阅读全文