conda list -f --json spyder 会产生巨大的负载
我确实在 ubuntu 20.04 上使用 anaconda,大约一周以来,我遇到了类似进程的问题
/home/csi/anaconda3/bin/python /home/csi/anaconda3/bin/conda list -f --json spyder
创建 40 到 160 之间的巨大负载。进程数量约为 110 个。 我一直在使用ananconda-navigator创建的4个环境,它们都是Python 3-Projects,没有一个被称为spyder。一种称为spyder5。 我正在使用 conda python 和提供的 .bashrc-snippet 激活。
:~$ conda list conda
# packages in environment at /home/csi/anaconda3:
#
# Name Version Build Channel
_anaconda_depends 2020.07 py38_0
anaconda custom py38_1
anaconda-client 1.9.0 py38h06a4308_0
anaconda-navigator 2.1.2 py38h06a4308_0
anaconda-project 0.10.2 pyhd3eb1b0_0
conda 4.11.0 py38h06a4308_0
conda-build 3.20.5 py38_1
conda-content-trust 0.1.1 pyhd3eb1b0_0
conda-env 2.6.0 1
conda-pack 0.6.0 pyhd3eb1b0_0
conda-package-handling 1.7.3 py38h27cfd23_1
conda-repo-cli 1.0.4 pyhd3eb1b0_0
conda-token 0.3.0 pyhd3eb1b0_0
conda-verify 3.4.2 py_1
一段时间后,该过程会再次自动启动。因此,为了在没有巨大负载的情况下工作,我创建了一个 bash 脚本,试图每十秒终止所有这些进程。
我没有尝试卸载 anaconda3 并重新创建所有环境。无论如何,当我在 5 月份升级 Ubuntu 版本时我会这样做。
但有人遇到过类似的问题吗?或者有谁知道如何停用 conda 列表的定期启动?这真的很烦人。
如果您需要更多信息,我很乐意为您提供!
I do use anaconda on an ubuntu 20.04 and since a week or so I have a problem with processes like
/home/csi/anaconda3/bin/python /home/csi/anaconda3/bin/conda list -f --json spyder
creating a huge load between 40 und 160. The number of processes is about 110.
I have been using 4 environments created by ananconda-navigator all of them are Python 3-Projects, none of them is called spyder. One is called spyder5.
I am using the activation of conda python with the delivered .bashrc-snippet.
:~$ conda list conda
# packages in environment at /home/csi/anaconda3:
#
# Name Version Build Channel
_anaconda_depends 2020.07 py38_0
anaconda custom py38_1
anaconda-client 1.9.0 py38h06a4308_0
anaconda-navigator 2.1.2 py38h06a4308_0
anaconda-project 0.10.2 pyhd3eb1b0_0
conda 4.11.0 py38h06a4308_0
conda-build 3.20.5 py38_1
conda-content-trust 0.1.1 pyhd3eb1b0_0
conda-env 2.6.0 1
conda-pack 0.6.0 pyhd3eb1b0_0
conda-package-handling 1.7.3 py38h27cfd23_1
conda-repo-cli 1.0.4 pyhd3eb1b0_0
conda-token 0.3.0 pyhd3eb1b0_0
conda-verify 3.4.2 py_1
The process starts automatically again after a while. So to work without that huge load I created a bash script trying to kill all those processes every ten seconds.
I did not try to uninstall anaconda3 and recreate all Environments. I will do this when I am upgrading the Ubuntu-Version in May anyway.
But does anyone have had an issue alike? Or does anyone know howto deactivate the periodically start of conda list? This is really annoying.
If you need more information I would be happy to provide them for you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所以过了一段时间 conda 的更新解决了这个问题。然而,这是奇怪的行为。
我确实通过 anaconda 安装的 pip3 命令重新安装了spyder。之后我通过 conda 命令更新了 anaconda 和 conda。
这解决了“conda list”进程的问题,但没有解决单个进程创建巨大负载的问题。不过现在系统又可以使用了。
So after a while an update of conda fixed this issue. However, this was strange behaviour.
I did reinstall spyder via pip3 command of the anaconda installation. After that I updated anaconda and conda via conda command.
This fixed the issue of "conda list" processes but not the issue of the one process creating a huge load. However now the system is usable again.