python创建虚拟环境失败_?conda创建虚拟环境失败,如何解决?

错误代码

conda create -n pytorch-gpu-env

Solving environment: done

# >>>>>>>>>>>>>>>>>>>>>> ERROR REPORT <<<<<<<<<<<<<<<<<<<<<<

Traceback (most recent call last):

File "/opt/anaconda3/lib/python3.7/site-packages/conda/core/subdir_data.py", line 227, in _load

mod_etag_headers.get('_mod'))

File "/opt/anaconda3/lib/python3.7/site-packages/conda/core/subdir_data.py", line 574, in fetch_repodata_remote_request

raise Response304ContentUnchanged()

conda.core.subdir_data.Response304ContentUnchanged

During handling of the above exception, another exception occurred:

Traceback (most recent call last):

File "/opt/anaconda3/lib/python3.7/site-packages/conda/exceptions.py", line 819, in __call__

return func(*args, **kwargs)

File "/opt/anaconda3/lib/python3.7/site-packages/conda/cli/main.py", line 78, in _main

exit_code = do_call(args, p)

File "/opt/anaconda3/lib/python3.7/site-packages/conda/cli/conda_argparse.py", line 77, in do_call

exit_code = getattr(module, func_name)(args, parser)

File "/opt/anaconda3/lib/python3.7/site-packages/conda/cli/main_create.py", line 11, in execute

install(args, parser, 'create')

File "/opt/anaconda3/lib/python3.7/site-packages/conda/cli/install.py", line 235, in install

force_reinstall=context.force,

File "/opt/anaconda3/lib/python3.7/site-packages/conda/core/solve.py", line 524, in solve_for_transaction

self._notify_conda_outdated(link_precs)

File "/opt/anaconda3/lib/python3.7/site-packages/conda/core/solve.py", line 544, in _notify_conda_outdated

SubdirData.query_all(conda_newer_spec, self.channels, self.subdirs),

File "/opt/anaconda3/lib/python3.7/site-packages/conda/core/subdir_data.py", line 91, in query_all

return tuple(concat(future.result() for future in as_completed(futures)))

File "/opt/anaconda3/lib/python3.7/site-packages/conda/core/subdir_data.py", line 95, in query

self.load()

File "/opt/anaconda3/lib/python3.7/site-packages/conda/core/subdir_data.py", line 149, in load

_internal_state = self._load()

File "/opt/anaconda3/lib/python3.7/site-packages/conda/core/subdir_data.py", line 233, in _load

mod_etag_headers.get('_mod'))

File "/opt/anaconda3/lib/python3.7/site-packages/conda/core/subdir_data.py", line 280, in _read_local_repdata

_internal_state = self._process_raw_repodata_str(raw_repodata_str)

File "/opt/anaconda3/lib/python3.7/site-packages/conda/core/subdir_data.py", line 317, in _process_raw_repodata_str

json_obj = json.loads(raw_repodata_str or '{}')

File "/opt/anaconda3/lib/python3.7/json/__init__.py", line 348, in loads

return _default_decoder.decode(s)

File "/opt/anaconda3/lib/python3.7/json/decoder.py", line 337, in decode

obj, end = self.raw_decode(s, idx=_w(s, 0).end())

File "/opt/anaconda3/lib/python3.7/json/decoder.py", line 353, in raw_decode

obj, end = self.scan_once(s, idx)

json.decoder.JSONDecodeError: Unterminated string starting at: line 501846 column 9 (char 15040330)

`$ /opt/anaconda3/bin/conda create -n pytorch-gpu-env`

environment variables:

CIO_TEST=CMAKE_PREFIX_PATH=/opt/anaconda3/bin

CONDA_DEFAULT_ENV=base

CONDA_EXE=/opt/anaconda3/bin/conda

CONDA_PREFIX=/opt/anaconda3

CONDA_PROMPT_MODIFIER=

CONDA_PYTHON_EXE=/opt/anaconda3/bin/python

CONDA_ROOT=/opt/anaconda3

CONDA_SHLVL=1

DEFAULTS_PATH=/usr/share/gconf/ubuntu.default.path

LD_LIBRARY_PATH=/usr/local/cuda-10.2/lib64:/usr/local/cuda-10.2/lib64

MANDATORY_PATH=/usr/share/gconf/ubuntu.mandatory.path

PATH=/usr/local/cuda-10.2/bin:/opt/anaconda3/bin:/home/yuuzh/bin:/home/yuuz

h/.local/bin:/usr/local/cuda-10.2/bin:/usr/local/cuda/bin:/usr/local/s

bin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local

/games:/snap/bin}

REQUESTS_CA_BUNDLE=SSL_CERT_FILE=XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0

XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0

active environment : base

active env location : /opt/anaconda3

shell level : 1

user config file : /home/yuuzh/.condarc

populated config files : /home/yuuzh/.condarc

conda version : 4.5.11

conda-build version : 3.15.1

python version : 3.7.0.final.0

base environment : /opt/anaconda3 (read only)

channel URLs : https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/linux-64

https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/noarch

https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/linux-64

https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/noarch

https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/linux-64

https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/noarch

https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/linux-64

https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/noarch

package cache : /opt/anaconda3/pkgs

/home/yuuzh/.conda/pkgs

envs directories : /home/yuuzh/.conda/envs

/opt/anaconda3/envs

platform : linux-64

user-agent : conda/4.5.11 requests/2.19.1 CPython/3.7.0 Linux/4.15.0-106-generic ubuntu/16.04 glibc/2.23

UID:GID : 1000:1000

netrc file : None

offline mode : False

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]:

No report sent. To permanently opt-out, use

$ conda config --set report_errors false

解决办法

重点: 执行命令 必须有 python = XXX

。。。