我无法在Linux上安装Anaconda

问题描述 投票:1回答:1

[当我尝试在Linux上安装Anaconda时,我到了这一点:

Anaconda3 will now be installed into this location:
/home/jorge/anaconda3

  - Press ENTER to confirm the location
  - Press CTRL-C to abort the installation
  - Or specify a different location below

[/home/jorge/anaconda3] >>> 
PREFIX=/home/jorge/anaconda3
Unpacking payload ...

然后我收到以下错误消息:

concurrent.futures.process._RemoteTraceback:                                        
'''
Traceback (most recent call last):
  File "concurrent/futures/process.py", line 367, in _queue_management_worker
  File "multiprocessing/connection.py", line 251, in recv
TypeError: __init__() missing 1 required positional argument: 'msg'
'''

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "entry_point.py", line 69, in <module>
  File "concurrent/futures/process.py", line 483, in _chain_from_iterable_of_lists
  File "concurrent/futures/_base.py", line 598, in result_iterator
  File "concurrent/futures/_base.py", line 435, in result
  File "concurrent/futures/_base.py", line 384, in __get_result
concurrent.futures.process.BrokenProcessPool: A process in the process pool was terminated abruptly while the future was running or pending.
[1770] Failed to execute script entry_point

我该怎么办?我正在按照所有说明进行操作]

python linux ubuntu anaconda failed-installation
1个回答
1
投票

您是否验证了安装程序数据的完整性?因为这是下载此损坏或不完整的常见错误因为这是上一步,所以您必须在执行脚本之前确保文件没有问题。这篇文章对我第一次安装有很大帮助。https://www.digitalocean.com/community/tutorials/how-to-install-anaconda-on-ubuntu-18-04-quickstart

© www.soinside.com 2019 - 2024. All rights reserved.