Spyder: Plotting a x^2 graphics

Created on 29 May 2020  Β·  7Comments  Β·  Source: spyder-ide/spyder

Description

What steps will reproduce the problem?

import matplotlib.pyplot as plt
import numpy as np

print ("for x axis:")
start=float (input("insert start number: "))
end=float (input("insert end number: "))
increment=float (input("insert increment from 0: "))
x=np.arange(start,end,increment)
y=x^2

plt.plot(x,y, 'y', label='y=x^2')
plt.show()

im using x in interval of -200 to 200

Traceback

  File "S:\ANACONDA_ProgramFiles\lib\site-packages\spyder\plugins\editor\utils\autosave.py", line 116, in do_autosave
    stack.autosave.autosave_all()
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\spyder\plugins\editor\utils\autosave.py", line 375, in autosave_all
    self.maybe_autosave(index)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\spyder\plugins\editor\utils\autosave.py", line 335, in maybe_autosave
    orig_hash = self.file_hashes[orig_filename]
KeyError: 'C:\\Users\\User\\.spyder-py3\\autosave\\FUNGSI HERMITE.py'

Versions

  • Spyder version: 4.0.1
  • Python version: 3.7.6
  • Qt version: 5.9.6
  • PyQt5 version: 5.9.2
  • Operating System: Windows 10

Dependencies

atomicwrites >=1.2.0         :  1.3.0 (OK)
chardet >=2.0.0              :  3.0.4 (OK)
cloudpickle >=0.5.0          :  1.3.0 (OK)
diff_match_patch >=20181111  :  20181111 (OK)
intervaltree                 :  None (OK)
IPython >=4.0                :  7.12.0 (OK)
jedi =0.14.1                 :  0.14.1 (OK)
nbconvert >=4.0              :  5.6.1 (OK)
numpydoc >=0.6.0             :  0.9.2 (OK)
pexpect >=4.4.0              :  4.8.0 (OK)
pickleshare >=0.4            :  0.7.5 (OK)
psutil >=0.3                 :  5.6.7 (OK)
pygments >=2.0               :  2.5.2 (OK)
pylint >=0.25                :  2.4.4 (OK)
pyls >=0.31.2;<0.32.0        :  0.31.7 (OK)
zmq >=17                     :  18.1.1 (OK)
qdarkstyle >=2.7             :  2.8 (OK)
qtawesome >=0.5.7            :  0.6.1 (OK)
qtconsole >=4.6.0            :  4.6.0 (OK)
qtpy >=1.5.0                 :  1.9.0 (OK)
rtree >=0.8.3                :  0.9.3 (OK)
sphinx >=0.6.6               :  2.4.0 (OK)
spyder_kernels >=1.8.1;<2.0.0:  1.8.1 (OK)
watchdog                     :  None (OK)
cython >=0.21                :  0.29.15 (OK)
matplotlib >=2.0.0           :  3.1.3 (OK)
numpy >=1.7                  :  1.18.1 (OK)
pandas >=0.13.1              :  1.0.1 (OK)
scipy >=0.17.0               :  1.4.1 (OK)
sympy >=0.7.3                :  1.5.1 (OK)
Awaiting Followup

Most helpful comment

I think your anaconda installation is broken and the easiest way to fix it is uninstalling it and installing it again, but make sure to delete the directory S:\ANACONDA_ProgramFiles manually before doing your installation again.

All 7 comments

HiΒ @Bonaaaa, thanks for reporting this. This error was fixed in a newer version of spyder.
Try "conda install spyder=4.1.3" in your anaconda prompt, to upgrade to the latest version.

Additionally, you might want to change y=x^2 for y=x**2 which is what is used for exponents.

the problem is i got another error while installing that spyder:
(base) PS C:\Users\User> conda install spyder=4.1.3
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: \
Found conflicts! Looking for incompatible packages.
This can take several minutes. Press CTRL-C to abort.
Examining tbb: 0%| | 0/301 [00:00

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

Traceback (most recent call last):
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\cli\install.py", line 265, in install
    should_retry_solve=(_should_retry_unfrozen or repodata_fn != repodata_fns[-1]),
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\core\solve.py", line 117, in solve_for_transaction
    should_retry_solve)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\core\solve.py", line 158, in solve_for_diff
    force_remove, should_retry_solve)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\core\solve.py", line 281, in solve_final_state
    ssc = self._run_sat(ssc)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\common\io.py", line 88, in decorated
    return f(*args, **kwds)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\core\solve.py", line 808, in _run_sat
    should_retry_solve=ssc.should_retry_solve
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\common\io.py", line 88, in decorated
    return f(*args, **kwds)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\resolve.py", line 1316, in solve
    raise UnsatisfiableError({})
conda.exceptions.UnsatisfiableError:
Did not find conflicting dependencies. If you would like to know which
packages conflict ensure that you have enabled unsatisfiable hints.

conda config --set unsatisfiable_hints True


During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\exceptions.py", line 1079, in __call__
    return func(*args, **kwargs)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\cli\main.py", line 84, in _main
    exit_code = do_call(args, p)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\cli\conda_argparse.py", line 82, in do_call
    return getattr(module, func_name)(args, parser)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\cli\main_install.py", line 20, in execute
    install(args, parser, 'install')
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\cli\install.py", line 299, in install
    should_retry_solve=(repodata_fn != repodata_fns[-1]),
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\core\solve.py", line 117, in solve_for_transaction
    should_retry_solve)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\core\solve.py", line 158, in solve_for_diff
    force_remove, should_retry_solve)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\core\solve.py", line 281, in solve_final_state
    ssc = self._run_sat(ssc)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\common\io.py", line 88, in decorated
    return f(*args, **kwds)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\core\solve.py", line 808, in _run_sat
    should_retry_solve=ssc.should_retry_solve
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\common\io.py", line 88, in decorated
    return f(*args, **kwds)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\resolve.py", line 1318, in solve
    self.find_conflicts(specs, specs_to_add, history_specs)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\resolve.py", line 347, in find_conflicts
    bad_deps = self.build_conflict_map(specs, specs_to_add, history_specs)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\resolve.py", line 507, in build_conflict_map
    root, search_node, dep_graph, num_occurances)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\resolve.py", line 369, in breadth_first_search_for_dep_graph
    last_spec = MatchSpec.union((path[-1], target_paths[-1][-1]))[0]
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\models\match_spec.py", line 481, in union
    return cls.merge(match_specs, union=True)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\models\match_spec.py", line 475, in merge
    reduce(lambda x, y: x._merge(y, union), group) if len(group) > 1 else group[0]
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\models\match_spec.py", line 475, in <lambda>
    reduce(lambda x, y: x._merge(y, union), group) if len(group) > 1 else group[0]
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\models\match_spec.py", line 502, in _merge
    final = this_component.union(that_component)
  File "S:\ANACONDA_ProgramFiles\lib\site-packages\conda\models\match_spec.py", line 764, in union
    return '|'.join(options)
TypeError: sequence item 0: expected str instance, Channel found

$ S:\ANACONDA_ProgramFiles\Scripts\conda-script.py install spyder=4.1.3

environment variables:
CIO_TEST=
CONDA_DEFAULT_ENV=base
CONDA_EXE=S:/ANACONDA_ProgramFiles\Scripts\conda.exe
CONDA_PREFIX=S:\ANACONDA_ProgramFiles
CONDA_PROMPT_MODIFIER=(base)
CONDA_PYTHON_EXE=S:\ANACONDA_ProgramFiles\python.exe
CONDA_ROOT=S:\ANACONDA_ProgramFiles
CONDA_SHLVL=1
HOMEPATH=\Users\User
PATH=S:\ANACONDA_ProgramFiles;S:\ANACONDA_ProgramFiles\Library\mingw-w64\bi
n;S:\ANACONDA_ProgramFiles\Library\usr\bin;S:\ANACONDA_ProgramFiles\Li
brary\bin;S:\ANACONDA_ProgramFiles\Scripts;S:\ANACONDA_ProgramFiles\bi
n;S:\ANACONDA_ProgramFiles;S:\ANACONDA_ProgramFiles\Library\mingw-w64\
bin;S:\ANACONDA_ProgramFiles\Library\usr\bin;S:\ANACONDA_ProgramFiles\
Library\bin;S:\ANACONDA_ProgramFiles\Scripts;S:\ANACONDA_ProgramFiles\
bin;S:\ANACONDA_ProgramFiles\condabin;S:\ANACONDA_ProgramFiles;S:\ANAC
ONDA_ProgramFiles\Library\mingw-w64\bin;S:\ANACONDA_ProgramFiles\Libra
ry\usr\bin;S:\ANACONDA_ProgramFiles\Library\bin;S:\ANACONDA_ProgramFil
es\Scripts;C:\Python38\Scripts;C:\Python38;C:\Program Files
(x86)\Common Files\Oracle\Java\javapath;C:\Program Files (x86)\Common
Files\Intel\Shared Files\cpp\bin\Intel64;C:\Windows\system32;C:\Window
s;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;
C:\Program Files\Intel\WiFi\bin;C:\Program Files\Common Files\Intel\Wi
relessCommon;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C
:\WINDOWS\System32\WindowsPowerShell\v1.0;C:\WINDOWS\System32\OpenSSH;
.;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\Program Files
(x86)\NVIDIA Corporation\PhysX\Common;S:\MATLAB (do not
disturb)\runtime\win64;S:\MATLAB (do not disturb)\bin;S:\MATLAB
(program file)\runtime\win64;S:\MATLAB (program
file)\bin;C:\ProgramData\chocolatey\bin;.
PSMODULEPATH=C:\Users\User\Documents\WindowsPowerShell\Modules;C:\Program Files\Win
dowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modu
les
PYTHON_HOME=C:\Users\User\Anaconda3
REQUESTS_CA_BUNDLE=
SSL_CERT_FILE=

 active environment : base
active env location : S:\ANACONDA_ProgramFiles
        shell level : 1
   user config file : C:\Users\User\.condarc

populated config files : C:\Users\User.condarc
conda version : 4.8.2
conda-build version : 3.18.11
python version : 3.7.6.final.0
virtual packages : __cuda=10.2
base environment : S:\ANACONDA_ProgramFiles (writable)
channel URLs : 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
package cache : S:\ANACONDA_ProgramFiles\pkgs
C:\Users\User.conda\pkgs
C:\Users\User\AppData\Local\conda\conda\pkgs
envs directories : S:\ANACONDA_ProgramFiles\envs
C:\Users\User.conda\envs
C:\Users\User\AppData\Local\conda\conda\envs
platform : win-64
user-agent : conda/4.8.2 requests/2.22.0 CPython/3.7.6 Windows/10 Windows/10.0.17763
administrator : True
netrc file : None
offline mode : False

anyway thats fine for me for using ^ for exponents, but thanks for that

I think your anaconda installation is broken and the easiest way to fix it is uninstalling it and installing it again, but make sure to delete the directory S:\ANACONDA_ProgramFiles manually before doing your installation again.

already did, and this time not in custom installation and still cant install it

(base) C:\Users\User>conda install spyder=4.1.3
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: -
Found conflicts! Looking for incompatible packages.
This can take several minutes. Press CTRL-C to abort.
Examining python-dateutil: 2%|β–ˆ | 6/301 [00:00<00:08, 33.24it/s]|Examining ipykernel: 3%|β–ˆβ–‰ | 10/301 [00:00<00:37, 7.72it/s]/Examining ipython: 7%|β–ˆβ–ˆβ–ˆβ–ˆβ–Œ | 22/301 [00:10<07:13, 1.56s/it]-Examining nbformat: 13%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰ | 39/301 [00:15<01:57, 2.23it/s]-Examining bottleneck: 14%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– | 42/301 [00:15<01:02, 4.12it/s]\Examining krb5: 17%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– | 52/301 [00:19<00:43, 5.69it/s]-Examining numpydoc: 21%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ | 62/301 [00:21<01:07, 3.55it/s]|Examining tk: 27%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Š | 80/301 [00:27<01:26, 2.55it/s]/Examining numpy-base: 31%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– | 93/301 [00:28<01:08, 3.02it/s]|Examining qt: 34%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ | 103/301 [00:31<00:55, 3.58it/s]\Examining importlib_metadata: 36%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ | 109/301 [00:32<00:35, 5.43it/s]\Examining nltk: 40%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹ | 121/301 [00:33<00:17, 10.28it/s]/Examining watchdog: 43%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹ | 129/301 [00:40<01:47, 1.59it/s]\Examining win_unicode_console: 48%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ | 145/301 [00:58<05:57, 2.29s/it]-Examining multipledispatch: 52%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Ž | 158/301 [01:02<02:16, 1.05it/s]|Examining sip: 54%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– | 163/301 [01:02<01:11, 1.93it/s]-Examining idna: 57%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Ž | 171/301 [01:09<02:21, 1.09s/it]|Examining pyzmq: 58%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹ | 175/301 [01:10<01:34, 1.33it/s]/Examining pyflakes: 58%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰ | 175/301 [01:11<01:34, 1.33it/s]-Examining pip: 62%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– | 187/301 [01:12<00:28, 4.06it/s]\Examining h5py: 64%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Š | 192/301 [01:16<00:52, 2.07it/s]|Examining joblib: 65%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– | 195/301 [01:30<00:47, 2.24it/s]/Examining conda-env: 65%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ | 197/301 [01:31<07:18, 4.22s/it]\Examining unicodecsv: 70%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹ | 211/301 [01:32<01:11, 1.25it/s]/Examining anaconda==2020.02: 73%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Ž | 220/301 [01:32<00:32, 2.46it/s]\Examining certifi: 75%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ | 225/301 [01:35<00:39, 1.93it/s]/Examining tornado: 77%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ | 232/301 [01:36<00:24, 2.78it/s]-Examining mkl-service: 79%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰ | 237/301 [01:36<00:16, 3.85it/s]\Examining pycurl: 79%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– | 239/301 [01:40<00:12, 5.15it/s]|Examining libxml2: 83%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– | 249/301 [01:43<00:25, 2.08it/s]/Examining widgetsnbextension: 84%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ | 253/301 [01:44<00:15, 3.01it/s]-Examining ipython_genutils: 84%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰ | 254/301 [01:45<00:27, 1.71it/s]/Examining webencodings: 87%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰ | 263/301 [01:47<00:10, 3.48it/s]-Examining liblief: 93%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰ | 281/301 [01:52<00:06, 2.96it/s]/Examining wrapt: 94%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– | 283/301 [01:53<00:04, 3.73it/s]/Examining backports.functools_lru_cache: 96%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Ž | 288/301 [01:54<00:02, 4.66it/s]/Examining openssl: 97%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– | 293/301 [01:55<00:01, 4.37it/s]|Examining conflict for libcurl sqlite pyrsistent asn1crypto mock click libssh2 win_unicode_console python-dateutil pyco/Examining conflict for libcurl mock pyrsistent asn1crypto libssh2 click win_unicode_console python-dateutil pycosat cyt/Examining conflict for libcurl sqlite pyrsistent asn1crypto mock click libssh2 win_unicode_console python-dateutil pyco/Examining conflict for libcurl pycurl libssh2 anaconda curl: 2%|β–Ž | 5/301 [01:19<1:24:24, 17.11s/it]\Examining conflict for libcurl krb5 pycurl anaconda curl: 2%|β–Œ | 7/301 [01:53<1:07:04, 13.69s/it]/Examining conflict for libcurl sqlite pyrsistent asn1crypto mock click libssh2 win_unicode_console python-dateutil pyco|Examining conflict for sqlite mock pyrsistent asn1crypto click win_unicode_console pythExamining conflict for mock pyrsiExamining conflict for anaconda-navigator scikit-image anaconda-client bkcharts python-dateutil dask spyder-kernels ipy\Examining conflict for sphinx anaconda-navigator nose python-language-server pip anaconda-client isort cython joblib js\Examining conflict for ipykernel backports.shutil_get_terminal_size get_terminal_size anaconda ipython ipywidgets jupyt/Examining conflict for ipykernel anaconda ipython ipywidgets jupyter prompt_toolkit jupyter_console: 10%| | 29/301 [06/Examining conflict for prometheus_client spyder-kernels jupyterlab nbformat ipykernel _ipyw_jlab_nb_ext_conf menuinst k/Examining conflict for ipykernel nbconvert widgeExamining conflict for scikit-image terminado isort dask pylint jupyterlab ipyExamining conflict for scikit-image terminado isort dask pylint jupyterlab ipyExamining conflict for ipykernel qtconsole nbconvert widgetsnbextension traitlExamining conflict for ipykernel qtconsole nbconvert widgetsnbextension traitlExamining conflict for sphinx python-language-server pip python pylint ipykernExamining conflict for sphinx python-language-server pip python pylint ipykernExamining conflict for ipykernel python-language-server anaconda ipython ipywiExamining conflict for ipykernel python-language-server anaconda ipython ipywiExamining conflict for ipykernel flake8 python-language-server keyring nbconveExamining conflict for ipykernel flake8 python-language-server keyring nbconveExamining conflict for comtypes anaconda xlwings: 16%|β–ˆβ–ˆβ–ˆβ–ˆβ–‰ Examining conflict for comtypes anaconda xlwings: 16%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆ Examining conflict for conda-build filelock anaconda: 16%|β–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for conda-build filelock anaconda: 17%|β–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for anaconda-navigator ruamel_yaml conda anaconda-client anExamining conflict for anaconda-navigator ruamel_yaml distributed conda anaconExamining conflict for anaconda-navigator ruamel_yaml distributed conda anaconExamining conflict for sphinx anaconda-navigator pip urllib3 requests conda anExamining conflict for sphinx anaconda-navigator pip urllib3 requests conda anExamining conflict for requests urllib3 anaconda pysocks: 18%|β–ˆβ–ˆβ–ˆβ–ˆ Examining conflict for requests urllib3 anaconda pysocks: 18%|β–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for sphinx anaconda-navigator pip cryptography urllib3 condExamining conflict for sphinx anaconda-navigator pip cryptography urllib3 condExamining conflict for cryptography urllib3 conda requests paramiko anaconda pExamining conflict for cryptography urllib3 conda requests paramiko anaconda pExamining conflict for cryptography paramiko pyopenssl urllib3: 19%|β–ˆβ–ˆβ–ˆβ– Examining conflict for cryptography paramiko pyopenssl urllib3: 19%|β–ˆβ–ˆβ–ˆβ– Examining conflict for cryptography urllib3 paramiko bcrypt anaconda cffi pynaExamining conflict for cryptography urllib3 widgetsnbextension requests paramiExamining conflict for cryptography urllib3 widgetsnbextension requests paramiExamining conflict for urllib3 requests conda anaconda conda-build prometheus_Examining conflict for urllib3 requests conda anaconda conda-build prometheus_Examining conflict for anaconda urllib3 win_inet_pton pysocks: 20%|β–ˆβ–ˆβ–ˆβ–Œ Examining conflict for anaconda urllib3 win_inet_pton pysocks: 20%|β–ˆβ–ˆβ–ˆβ–‹ Examining conflict for bokeh dask anaconda scikit-image: 20%|β–ˆβ–ˆβ–ˆβ–ˆβ–Š Examining conflict for bokeh dask anaconda scikit-image: 21%|β–ˆβ–ˆβ–ˆβ–ˆβ–‰ Examining conflict for mkl_fft scikit-image bkcharts scipy h5py dask numba pytExamining conflict for mkl_fft scikit-image bkcharts scipy h5py dask numba pytExamining conflict for mkl_fft scikit-image bkcharts scipy h5py dask numba pytExamining conflict for mkl_fft scikit-image bkcharts scipy h5py dask numba pytExamining conflict for mkl_fft scikit-image bkcharts scipy h5py dask numba pytExamining conflict for mkl_fft scikit-image bkcharts scipy h5py dask numba pytExamining conflict for scikit-image bkcharts bokeh pandas anaconda statsmodelsExamining conflict for scikit-image bkcharts bokeh pandas anaconda statsmodelsExamining conflict for mkl_fft scikit-image bkcharts scipy h5py dask numba pytExamining conflict for mkl_fft scikit-image bkcharts scipy h5py dask numba pytExamining conflict for matplotlib scikit-image bokeh anaconda matplotlib-base Examining conflict for matplotlib scikit-image bokeh anaconda matplotlib-base Examining conflict for sphinx anaconda-navigator pip requests conda anaconda-cExamining conflict for sphinx anaconda-navigator pip requests conda anaconda-cExamining conflict for bkcharts bokeh dask anaconda: 23%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰ Examining conflict for bkcharts bokeh dask anaconda: 23%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ Examining conflict for matplotlib scikit-image bokeh cycler anaconda matplotliExamining conflict for matplotlib scikit-image bokeh cycler anaconda matplotliExamining conflict for markupsafe sphinx flask nbconvert conda-verify bokeh noExamining conflict for markupsafe sphinx flask nbconvert conda-verify bokeh noExamining conflict for pytest sphinx packaging pip matplotlib scikit-image bokExamining conflict for pytest sphinx packaging pip matplotlib scikit-image bokExamining conflict for anaconda-navigator scikit-image bokeh libtiff anaconda Examining conflict for anaconda-navigator scikit-image bokeh libtiff anaconda Examining conflict for matplotlib scikit-image bokeh anaconda matplotlib-base Examining conflict for matplotlib scikit-image bokeh anaconda matplotlib-base Examining conflict for anaconda-navigator matplotlib scikit-image bokeh navigaExamining conflict for anaconda-navigator matplotlib scikit-image bokeh navigaExamining conflict for mkl_fft scikit-image bkcharts scipy h5py dask numba pytExamining conflict for mkl_fft scikit-image bkcharts scipy h5py dask numba pytExamining conflict for pytest sphinx pytest-doctestplus packaging pip python aExamining conflict for pytest sphinx pytest-doctestplus packaging pip python aExamining conflict for anaconda-navigator distributed scikit-image anaconda-clExamining conflict for anaconda-navigator distributed scikit-image anaconda-clExamining conflict for mkl_fft scikit-image bkcharts scipy h5py dask numba pytExamining conflict for mkl_fft scikit-image bkcharts scipy h5py dask numba pytExamining conflict for flake8 sphinx python-language-server bokeh numpydoc spyExamining conflict for flake8 sphinx python-language-server bokeh numpydoc spyExamining conflict for backports.functools_lru_cache python-language-server maExamining conflict for backports.functools_lru_cache python-language-server maExamining conflict for anaconda-navigator scikit-image bokeh anaconda imageio Examining conflict for anaconda-navigator scikit-image bokeh anaconda imageio Examining conflict for matplotlib scikit-image bokeh anaconda seaborn nltk dasExamining conflict for matplotlib scikit-image bokeh anaconda seaborn nltk dasExamining conflict for anaconda-navigator matplotlib scikit-image bokeh anaconExamining conflict for anaconda-navigator matplotlib scikit-image bokeh anaconExamining conflict for bokeh dask: 28%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰ Examining conflict for bokeh dask: 29%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for sphinx anaconda-navigator matplotlib scikit-image anacoExamining conflict for sphinx anaconda-navigator matplotlib scikit-image anacoExamining conflict for sphinx flask nbconvert widgetsnbextension conda-verify Examining conflict for sphinx flask nbconvert widgetsnbextension conda-verify Examining conflict for sphinx anaconda-navigator pip requests conda anaconda-cExamining conflict for sphinx anaconda-navigator pip requests conda anaconda-cExamining conflict for matplotlib scikit-image bokeh anaconda matplotlib-base Examining conflict for matplotlib scikit-image bokeh anaconda matplotlib-base Examining conflict for flake8 python-language-server matplotlib scikit-image bExamining conflict for flake8 python-language-server matplotlib scikit-image bExamining conflict for anaconda-navigator scikit-image bokeh libtiff anaconda Examining conflict for anaconda-navigator scikit-image bokeh libtiff anaconda Examining conflict for anaconda-navigator olefile scikit-image bokeh anaconda Examining conflict for anaconda-navigator olefile scikit-image bokeh anaconda Examining conflict for pip anaconda dask msgpack-python distributed: 31%|β–ˆβ–ˆβ–ˆβ–‹Examining conflict for pip anaconda dask msgpack-python distributed: 31%|β–ˆβ–ˆβ–ˆβ–‹Examining conflict for anaconda greenlet gevent: 31%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰ Examining conflict for anaconda greenlet gevent: 32%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ Examining conflict for anaconda openpyxl jdcal: 32%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for anaconda openpyxl jdcal: 32%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ Examining conflict for m2w64-gcc-libgfortran m2w64-gcc-libs terminado anacondaExamining conflict for m2w64-gcc-libgfortran m2w64-gcc-libs terminado anacondaExamining conflict for m2w64-gcc-libgfortran m2w64-gcc-libs anaconda pywinpty:Examining conflict for m2w64-gcc-libgfortran m2w64-gcc-libs anaconda pywinpty:Examining conflict for m2w64-gcc-libs-core m2w64-gcc-libgfortran m2w64-gcc-libExamining conflict for m2w64-gcc-libs-core m2w64-gcc-libgfortran m2w64-gcc-libExamining conflict for m2w64-gcc-libgfortran m2w64-gcc-libs-core m2w64-gcc-libExamining conflict for m2w64-gcc-libgfortran m2w64-gcc-libs-core m2w64-gcc-libExamining conflict for m2w64-libwinpthread-git m2w64-gcc-libs-core m2w64-gcc-lExamining conflict for m2w64-libwinpthread-git m2w64-gcc-libs-core m2w64-gcc-lExamining conflict for m2w64-libwinpthread-git m2w64-gcc-libs-core m2w64-gcc-lExamining conflict for m2w64-libwinpthread-git m2w64-gcc-libs-core m2w64-gcc-lExamining conflict for beautifulsoup4 conda-build anaconda: 34%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Š Examining conflict for beautifulsoup4 conda-build anaconda: 34%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Š Examining conflict for beautifulsoup4 conda-build anaconda soupsieve: 34%|β–ˆβ–ˆβ–ˆExamining conflict for beautifulsoup4 conda-build anaconda soupsieve: 35%|β–ˆβ–ˆβ–ˆExamining conflict for pytest flake8 keyring importlib_metadata path zipp anacExamining conflict for pytest flake8 keyring importlib_metadata path zipp anacExamining conflict for importlib_metadata zipp: 35%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for importlib_metadata zipp: 35%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Ž Examining conflict for numpydoc anaconda ipython spyder jedi: 35%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Ž Examining conflict for prompt_toolkit ipython jupyter_console: 36%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ Examining conflict for prompt_toolkit ipython jupyter_console: 36%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ Examining conflict for python-language-server anaconda ipython spyder parso jeExamining conflict for pytest pytest-doctestplus wcwidth astropy anaconda pyteExamining conflict for pytest pytest-doctestplus wcwidth astropy anaconda pyteExamining conflict for python-language-server isort importlib_metadata pylint Examining conflict for python-language-server isort importlib_metadata pylint Examining conflict for pytest testpath importlib_metadata conda-build pathlib2Examining conflict for pytest testpath importlib_metadata conda-build pathlib2Examining conflict for conda-build anaconda py-lief: 37%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ Examining conflict for conda-build anaconda liblief py-lief: 38%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for conda-build anaconda liblief py-lief: 38%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for cryptography bcrypt anaconda cffi pynacl gevent pycparsExamining conflict for cryptography bcrypt anaconda cffi pynacl gevent pycparsExamining conflict for anaconda pytables numexpr: 38%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for anaconda pytables numexpr: 39%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ Examining conflict for mkl_fft numexpr numpy scipy anaconda mkl mkl_random numExamining conflict for mkl_fft numexpr numpy scipy anaconda mkl mkl_random numExamining conflict for conda-build pkginfo anaconda: 39%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for conda-build pkginfo anaconda: 39%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ Examining conflict for rope anaconda python-language-server spyder: 39%|β–ˆβ–ˆβ–ˆβ–ˆβ–‹Examining conflict for rope anaconda python-language-server spyder: 40%|β–ˆβ–ˆβ–ˆβ–ˆβ–‹Examining conflict for nose anaconda: 40%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ Examining conflict for nose anaconda: 40%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹ Examining conflict for paramiko anaconda pycrypto: 40%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ Examining conflict for paramiko anaconda pycrypto: 40%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹ Examining conflict for scikit-image scipy anaconda statsmodels seaborn nltk paExamining conflict for scikit-image scipy anaconda statsmodels seaborn nltk paExamining conflict for autopep8 anaconda python-language-server spyder: 41%|β–ˆExamining conflict for autopep8 anaconda python-language-server spyder: 41%|β–ˆExamining conflict for flake8 python-language-server pycodestyle anaconda autoExamining conflict for flake8 python-language-server pycodestyle anaconda autoExamining conflict for pytables blosc anaconda: 41%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for pytables blosc anaconda: 42%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Ž Examining conflict for pytables blosc anaconda snappy: 42%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for pytables blosc anaconda snappy: 42%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for conda-package-handling libtiff libarchive pytables anacExamining conflict for conda-package-handling libtiff libarchive pytables anacExamining conflict for conda-package-handling libarchive pytables anaconda zstExamining conflict for conda-package-handling libarchive pytables anaconda zstExamining conflict for conda-package-handling xz libtiff libarchive anaconda zExamining conflict for conda-package-handling xz libtiff libarchive anaconda zExamining conflict for llvmlite numba anaconda: 43%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹ Examining conflict for llvmlite numba anaconda: 43%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Š Examining conflict for anaconda-navigator nbconvert widgetsnbextension anacondExamining conflict for anaconda-navigator nbconvert widgetsnbextension anacondExamining conflict for nbconvert anaconda-client notebook anaconda jupyterlab_Examining conflict for nbconvert anaconda-client notebook anaconda jupyterlab_Examining conflict for pytest pytest-doctestplus astropy anaconda pytest-astroExamining conflict for pytest pytest-doctestplus astropy anaconda pytest-astroExamining conflict for python-language-server importlib_metadata jsonschema nbExamining conflict for python-language-server importlib_metadata jsonschema nbExamining conflict for pip nbconvert python bleach anaconda html5lib: 45%|β–ˆβ–ˆβ–ˆExamining conflict for pip nbconvert python bleach anaconda html5lib: 45%|β–ˆβ–ˆβ–ˆExamining conflict for pip nbconvert python bleach anaconda webencodings html5Examining conflict for pip nbconvert python bleach anaconda webencodings html5Examining conflict for jupyterlab json5 jupyterlab_server anaconda: 45%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for jupyterlab json5 jupyterlab_server anaconda: 46%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for bottleneck anaconda: 46%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for bottleneck anaconda: 46%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ Examining conflict for anaconda diff-match-patch spyder: 46%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ Examining conflict for anaconda diff-match-patch spyder: 46%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ Examining conflict for itsdangerous flask anaconda: 46%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰ Examining conflict for itsdangerous flask anaconda: 47%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ Examining conflict for pep8 anaconda: 47%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ Examining conflict for pep8 anaconda: 47%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹ Examining conflict for xlrd anaconda: 47%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹ Examining conflict for xlrd anaconda: 47%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Š Examining conflict for anaconda path.py: 47%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for anaconda path.py: 48%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ Examining conflict for pytest flake8 python-language-server keyring nbconvert Examining conflict for python-language-server future python-jsonrpc-server conExamining conflict for python-language-server future python-jsonrpc-server conExamining conflict for pytest contextlib2 keyring importlib_metadata path anacExamining conflict for pytest contextlib2 keyring importlib_metadata path anacExamining conflict for anaconda path path.py: 49%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for pytest flake8 python-language-server keyring importlib_Examining conflict for pytest flake8 python-language-server keyring importlib_Examining conflict for pytables anaconda: 49%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹ Examining conflict for pytables anaconda: 50%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Š Examining conflict for pytables h5py anaconda hdf5: 50%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Š Examining conflict for pytables h5py anaconda hdf5: 50%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰ Examining conflict for conda-package-handling libarchive pytables anaconda bziExamining conflict for conda-package-handling libarchive pytables anaconda bziExamining conflict for mock pytables: 50%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ Examining conflict for mock pytables: 50%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for mock pytables anaconda: 50%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹ Examining conflict for mock pytables anaconda: 51%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Š Examining conflict for numba mock pytest-doctestplus pytest astropy pytest-remExamining conflict for numba mock pytest-doctestplus pytest astropy pytest-remExamining conflict for conda-package-handling libarchive pytables lzo anacondaExamining conflict for conda-package-handling libarchive pytables lzo anacondaExamining conflict for astropy anaconda pytest-astropy pytest-openfiles: 51%|Examining conflict for astropy anaconda pytest-astropy pytest-openfiles: 52%|Examining conflict for pytest pytest-doctestplus py anaconda pytest-remotedataExamining conflict for pytest pytest-doctestplus py anaconda pytest-remotedataExamining conflict for pytest pytest-doctestplus anaconda pytest-remotedata pyExamining conflict for pytest pytest-doctestplus anaconda pytest-remotedata pyExamining conflict for pytest pytest-doctestplus python-language-server astropExamining conflict for pytest pytest-doctestplus python-language-server astropExamining conflict for anaconda-navigator anaconda conda-build pytest-astropy Examining conflict for anaconda-navigator anaconda conda-build pytest-astropy Examining conflict for pytest pytest-doctestplus anaconda pytest-remotedata pyExamining conflict for pytest pytest-doctestplus anaconda pytest-remotedata pyExamining conflict for xlsxwriter anaconda: 53%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Ž Examining conflict for xlsxwriter anaconda: 54%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for flake8 python-language-server mccabe anaconda pylint spExamining conflict for flake8 python-language-server mccabe anaconda pylint spExamining conflict for anaconda gevent: 54%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹ Examining conflict for anaconda gevent: 54%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Š Examining conflict for sphinx numpydoc anaconda spyder jedi: 54%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Ž Examining conflict for sphinx numpydoc anaconda spyder jedi: 55%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for scikit-image anaconda dask dask-core distributed: 55%|Examining conflict for scikit-image anaconda dask dask-core distributed: 55%|Examining conflict for sphinx numpydoc docutils anaconda spyder: 55%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for sphinx numpydoc docutils anaconda spyder: 55%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for sphinx numpydoc anaconda spyder sphinxcontrib-htmlhelp:Examining conflict for sphinx numpydoc anaconda spyder sphinxcontrib-htmlhelp:Examining conflict for sphinx numpydoc anaconda spyder sphinxcontrib-jsmath: Examining conflict for sphinx numpydoc anaconda spyder sphinxcontrib-jsmath: Examining conflict for sphinxcontrib-devhelp sphinx numpydoc anaconda spyder: Examining conflict for sphinxcontrib-devhelp sphinx numpydoc anaconda spyder: Examining conflict for sphinx numpydoc babel anaconda spyder: 56%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Examining conflict for sphinx numpydoc babel anaconda spyder: 57%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Examining conflict for sphinx alabaster numpydoc anaconda spyder: 57%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for sphinx alabaster numpydoc anaconda spyder: 57%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for sphinx numpydoc anaconda spyder sphinxcontrib-websupporExamining conflict for sphinx numpydoc anaconda spyder sphinxcontrib-websupporExamining conflict for sphinx snowballstemmer python-language-server numpydoc Examining conflict for sphinx snowballstemmer python-language-server numpydoc Examining conflict for sphinx numpydoc anaconda sphinxcontrib-applehelp spyderExamining conflict for sphinx numpydoc anaconda sphinxcontrib-applehelp spyderExamining conflict for sphinx sphinxcontrib-qthelp numpydoc anaconda spyder: Examining conflict for sphinx sphinxcontrib-qthelp numpydoc anaconda spyder: Examining conflict for sphinx sphinxcontrib-serializinghtml numpydoc anaconda Examining conflict for sphinx sphinxcontrib-serializinghtml numpydoc anaconda Examining conflict for sphinx numpydoc anaconda imagesize spyder: 59%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for sphinx numpydoc anaconda imagesize spyder: 59%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for intervaltree anaconda spyder: 59%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰ Examining conflict for intervaltree anaconda spyder: 59%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ Examining conflict for sortedcollections anaconda intervaltree hypothesis pyteExamining conflict for sortedcollections anaconda intervaltree hypothesis pyteExamining conflict for python-language-server anaconda isort pylint spyder: 6Examining conflict for python-language-server anaconda isort pylint spyder: 6Examining conflict for anaconda jupyter: 60%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for anaconda jupyter: 60%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ Examining conflict for widgetsnbextension _ipyw_jlab_nb_ext_conf anaconda ipywExamining conflict for widgetsnbextension _ipyw_jlab_nb_ext_conf anaconda ipywExamining conflict for widgetsnbextension send2trash anaconda notebook jupyterExamining conflict for widgetsnbextension send2trash anaconda notebook jupyterExamining conflict for anaconda qtconsole spyder jupyter: 61%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for anaconda qtconsole spyder jupyter: 61%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ Examining conflict for widgetsnbextension terminado anaconda notebook jupyterlExamining conflict for widgetsnbextension terminado anaconda notebook jupyterlExamining conflict for widgetsnbextension _ipyw_jlab_nb_ext_conf anaconda noteExamining conflict for widgetsnbextension _ipyw_jlab_nb_ext_conf anaconda noteExamining conflict for ipywidgets _ipyw_jlab_nb_ext_conf anaconda jupyter: 62Examining conflict for ipywidgets _ipyw_jlab_nb_ext_conf anaconda jupyter: 62Examining conflict for nbconvert pandoc anaconda notebook spyder jupyter: 62%Examining conflict for nbconvert pandoc anaconda notebook spyder jupyter: 63%Examining conflict for jupyter_console anaconda jupyter: 63%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for jupyter_console anaconda jupyter: 63%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ Examining conflict for widgetsnbextension anaconda notebook prometheus_client Examining conflict for widgetsnbextension anaconda notebook prometheus_client Examining conflict for nbconvert anaconda notebook pandocfilters spyder jupyteExamining conflict for nbconvert anaconda notebook pandocfilters spyder jupyteExamining conflict for mistune nbconvert anaconda notebook spyder jupyter: 64Examining conflict for mistune nbconvert anaconda notebook spyder jupyter: 64Examining conflict for anaconda-navigator navigator-updater anaconda spyder juExamining conflict for anaconda-navigator navigator-updater anaconda spyder juExamining conflict for nbconvert widgetsnbextension anaconda notebook jupyterlExamining conflict for nbconvert widgetsnbextension anaconda notebook jupyterlExamining conflict for nbconvert anaconda notebook defusedxml spyder jupyter: Examining conflict for nbconvert anaconda notebook defusedxml spyder jupyter: Examining conflict for nbconvert bleach anaconda notebook spyder jupyter: 65%Examining conflict for nbconvert bleach anaconda notebook spyder jupyter: 65%Examining conflict for testpath nbconvert anaconda notebook spyder jupyter: 6Examining conflict for testpath nbconvert anaconda notebook spyder jupyter: 6Examining conflict for bitarray anaconda: 66%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰ Examining conflict for bitarray anaconda: 66%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ Examining conflict for anaconda-navigator xmltodict: 66%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Š Examining conflict for anaconda-navigator xmltodict: 66%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰ Examining conflict for numba anaconda: 66%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for numba numpy-base tbb anaconda: 67%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Ž Examining conflict for numba numpy-base tbb anaconda: 67%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for paramiko spyder anaconda pynacl: 67%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ Examining conflict for paramiko spyder anaconda pynacl: 67%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Examining conflict for conda-verify conda-build backports.tempfile: 67%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for conda-verify conda-build backports.tempfile: 68%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for conda-verify backports.tempfile backports.weakref: 68%Examining conflict for conda-package-handling libxml2 lxml libarchive anacondaExamining conflict for pyzmq libsodium jupyter_client anaconda notebook zeromqExamining conflict for pyzmq libsodium jupyter_client anaconda notebook zeromqExamining conflict for pyzmq jupyter_client anaconda notebook zeromq spyder spExamining conflict for pyzmq jupyter_client anaconda notebook zeromq spyder spExamining conflict for anaconda-navigator anaconda-project anaconda: 69%|β–ˆβ–ˆβ–ˆβ–ˆExamining conflict for anaconda-navigator anaconda-project anaconda: 69%|β–ˆβ–ˆβ–ˆβ–ˆExamining conflict for anaconda-navigator anaconda-client anaconda-project anaExamining conflict for anaconda-client anaconda-navigator anaconda-project anaExamining conflict for anaconda-client anaconda-navigator anaconda-project anaExamining conflict for statsmodels seaborn anaconda: 70%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰ Examining conflict for statsmodels seaborn anaconda: 70%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ Examining conflict for statsmodels seaborn patsy anaconda: 70%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for statsmodels seaborn patsy anaconda: 71%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for scikit-image anaconda toolz cytoolz dask partd distribuExamining conflict for scikit-image anaconda toolz cytoolz dask partd distribuExamining conflict for scikit-image anaconda cytoolz dask distributed: 71%|β–ˆβ–ˆExamining conflict for scikit-image anaconda cytoolz dask distributed: 71%|β–ˆβ–ˆExamining conflict for anaconda spyder: 71%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ Examining conflict for anaconda spyder: 72%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹ Examining conflict for anaconda python-language-server spyder python-jsonrpc-sExamining conflict for anaconda python-language-server spyder python-jsonrpc-sExamining conflict for anaconda-navigator matplotlib navigator-updater anacondExamining conflict for anaconda-navigator matplotlib navigator-updater anacondExamining conflict for cloudpickle scikit-image anaconda dask spyder spyder-keExamining conflict for cloudpickle scikit-image anaconda dask spyder spyder-keExamining conflict for anaconda python-language-server spyder: 73%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for anaconda python-language-server spyder: 73%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for anaconda qdarkstyle spyder: 73%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Examining conflict for anaconda qdarkstyle spyder: 73%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ŽExamining conflict for watchdog anaconda spyder argh: 73%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for watchdog anaconda spyder argh: 74%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for keyring anaconda spyder: 74%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Œ Examining conflict for keyring anaconda spyder: 74%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹ Examining conflict for python-language-server astroid anaconda pylint spyder: Examining conflict for python-language-server astroid anaconda pylint spyder: Examining conflict for anaconda spyder spyder-kernels: 74%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for anaconda spyder spyder-kernels: 75%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for anaconda python-language-server yapf spyder: 75%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for anaconda python-language-server yapf spyder: 75%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for anaconda qtawesome spyder: 75%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ŒExamining conflict for anaconda qtawesome spyder: 75%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ŒExamining conflict for paramiko anaconda spyder: 75%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Examining conflict for paramiko anaconda spyder: 76%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Examining conflict for anaconda-navigator matplotlib sip navigator-updater anaExamining conflict for anaconda-navigator matplotlib sip navigator-updater anaExamining conflict for watchdog anaconda spyder: 76%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ŒExamining conflict for watchdog anaconda spyder: 76%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‹Examining conflict for anaconda rtree spyder: 76%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰ Examining conflict for anaconda rtree spyder: 77%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆ Examining conflict for paramiko bcrypt anaconda prometheus_client spyder: 77%Examining conflict for paramiko bcrypt anaconda prometheus_client spyder: 77%Examining conflict for flake8 pyflakes python-language-server anaconda spyder:Examining conflict for flake8 pyflakes python-language-server anaconda spyder:Examining conflict for pexpect anaconda spyder: 77%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ŠExamining conflict for pexpect anaconda spyder: 78%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‰Examining conflict for anaconda python-language-server pylint spyder: 78%|β–ˆβ–ˆβ–ˆExamining conflict for anaconda python-language-server pylint spyder: 78%|β–ˆβ–ˆβ–ˆExamining conflict for python-language-server pylint spyder: 78%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for python-language-server pylint spyder: 78%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for watchdog anaconda pathtools spyder: 78%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for watchdog anaconda pathtools spyder: 79%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for paramiko prometheus_client spyder: 79%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for paramiko prometheus_client spyder: 79%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for keyring anaconda pywin32-ctypes spyder: 79%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for keyring anaconda pywin32-ctypes spyder: 79%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for pydocstyle anaconda python-language-server spyder: 79%Examining conflict for pydocstyle anaconda python-language-server spyder: 80%Examining conflict for flake8 anaconda python-language-server spyder: 80%|β–ˆβ–ˆβ–ˆExamining conflict for flake8 anaconda python-language-server spyder: 80%|β–ˆβ–ˆβ–ˆExamining conflict for python-language-server python-jsonrpc-server anaconda uExamining conflict for python-language-server python-jsonrpc-server anaconda uExamining conflict for anaconda rtree libspatialindex spyder: 80%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for anaconda rtree libspatialindex spyder: 81%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for numpy-base mkl_fft numpy mkl_random: 81%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for numpy-base mkl_fft numpy mkl_random: 81%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for anaconda nltk scikit-learn: 81%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for anaconda nltk scikit-learn: 81%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for joblib anaconda nltk scikit-learn: 81%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for joblib anaconda nltk scikit-learn: 82%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for pyqt qt icu anaconda: 82%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for pyqt qt icu anaconda: 82%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆExamining conflict for __cuda: 82%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ– Examining conflict for __cuda: 82%|β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–Ž failed

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

Traceback (most recent call last):
  File "C:\Users\User\anaconda3\lib\site-packages\conda\cli\install.py", line 265, in install
    should_retry_solve=(_should_retry_unfrozen or repodata_fn != repodata_fns[-1]),
  File "C:\Users\User\anaconda3\lib\site-packages\conda\core\solve.py", line 117, in solve_for_transaction
    should_retry_solve)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\core\solve.py", line 158, in solve_for_diff
    force_remove, should_retry_solve)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\core\solve.py", line 281, in solve_final_state
    ssc = self._run_sat(ssc)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\common\io.py", line 88, in decorated
    return f(*args, **kwds)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\core\solve.py", line 808, in _run_sat
    should_retry_solve=ssc.should_retry_solve
  File "C:\Users\User\anaconda3\lib\site-packages\conda\common\io.py", line 88, in decorated
    return f(*args, **kwds)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\resolve.py", line 1316, in solve
    raise UnsatisfiableError({})
conda.exceptions.UnsatisfiableError:
Did not find conflicting dependencies. If you would like to know which
packages conflict ensure that you have enabled unsatisfiable hints.

conda config --set unsatisfiable_hints True


During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:\Users\User\anaconda3\lib\site-packages\conda\exceptions.py", line 1079, in __call__
    return func(*args, **kwargs)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\cli\main.py", line 84, in _main
    exit_code = do_call(args, p)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\cli\conda_argparse.py", line 82, in do_call
    return getattr(module, func_name)(args, parser)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\cli\main_install.py", line 20, in execute
    install(args, parser, 'install')
  File "C:\Users\User\anaconda3\lib\site-packages\conda\cli\install.py", line 299, in install
    should_retry_solve=(repodata_fn != repodata_fns[-1]),
  File "C:\Users\User\anaconda3\lib\site-packages\conda\core\solve.py", line 117, in solve_for_transaction
    should_retry_solve)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\core\solve.py", line 158, in solve_for_diff
    force_remove, should_retry_solve)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\core\solve.py", line 281, in solve_final_state
    ssc = self._run_sat(ssc)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\common\io.py", line 88, in decorated
    return f(*args, **kwds)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\core\solve.py", line 808, in _run_sat
    should_retry_solve=ssc.should_retry_solve
  File "C:\Users\User\anaconda3\lib\site-packages\conda\common\io.py", line 88, in decorated
    return f(*args, **kwds)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\resolve.py", line 1318, in solve
    self.find_conflicts(specs, specs_to_add, history_specs)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\resolve.py", line 347, in find_conflicts
    bad_deps = self.build_conflict_map(specs, specs_to_add, history_specs)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\resolve.py", line 507, in build_conflict_map
    root, search_node, dep_graph, num_occurances)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\resolve.py", line 369, in breadth_first_search_for_dep_graph
    last_spec = MatchSpec.union((path[-1], target_paths[-1][-1]))[0]
  File "C:\Users\User\anaconda3\lib\site-packages\conda\models\match_spec.py", line 481, in union
    return cls.merge(match_specs, union=True)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\models\match_spec.py", line 475, in merge
    reduce(lambda x, y: x._merge(y, union), group) if len(group) > 1 else group[0]
  File "C:\Users\User\anaconda3\lib\site-packages\conda\models\match_spec.py", line 475, in <lambda>
    reduce(lambda x, y: x._merge(y, union), group) if len(group) > 1 else group[0]
  File "C:\Users\User\anaconda3\lib\site-packages\conda\models\match_spec.py", line 502, in _merge
    final = this_component.union(that_component)
  File "C:\Users\User\anaconda3\lib\site-packages\conda\models\match_spec.py", line 764, in union
    return '|'.join(options)
TypeError: sequence item 0: expected str instance, Channel found

$ C:\Users\User\anaconda3\Scripts\conda-script.py install spyder=4.1.3

environment variables:
CIO_TEST=
CONDA_BAT=C:\Users\User\anaconda3\condabin\conda.bat
CONDA_DEFAULT_ENV=base
CONDA_EXE=C:\Users\User\anaconda3\condabin..\Scripts\conda.exe
CONDA_EXES="C:\Users\User\anaconda3\condabin..\Scripts\conda.exe"
CONDA_PREFIX=C:\Users\User\anaconda3
CONDA_PROMPT_MODIFIER=(base)
CONDA_PYTHON_EXE=C:\Users\User\anaconda3\python.exe
CONDA_ROOT=C:\Users\User\anaconda3
CONDA_SHLVL=1
HOMEPATH=\Users\User
PATH=C:\Users\User\anaconda3;C:\Users\User\anaconda3\Library\mingw-w64\bin;
C:\Users\User\anaconda3\Library\usr\bin;C:\Users\User\anaconda3\Librar
y\bin;C:\Users\User\anaconda3\Scripts;C:\Users\User\anaconda3\bin;C:\U
sers\User\anaconda3;C:\Users\User\anaconda3\Library\mingw-w64\bin;C:\U
sers\User\anaconda3\Library\usr\bin;C:\Users\User\anaconda3\Library\bi
n;C:\Users\User\anaconda3\Scripts;C:\Users\User\anaconda3\bin;C:\Users
\User\anaconda3\condabin;C:\Python38\Scripts;C:\Python38;C:\Program
Files (x86)\Common Files\Oracle\Java\javapath;C:\Program Files
(x86)\Common Files\Intel\Shared Files\cpp\bin\Intel64;C:\Windows\syste
m32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPow
erShell\v1.0;C:\Program Files\Intel\WiFi\bin;C:\Program Files\Common F
iles\Intel\WirelessCommon;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\Sy
stem32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0;C:\WINDOWS\Syst
em32\OpenSSH;;C:\Program Files\NVIDIA Corporation\NVIDIA
NvDLISR;C:\Program Files (x86)\NVIDIA
Corporation\PhysX\Common;S:\MATLAB (do not
disturb)\runtime\win64;S:\MATLAB (do not disturb)\bin;C:\ProgramData\c
hocolatey\bin;C:\Users\User\AppData\Local\Programs\Python\Python38-32\
Scripts;C:\Users\User\AppData\Local\Programs\Python\Python38-32;C:\Use
rs\User\anaconda3\Scripts;.;C:\Users\User\AppData\Local\Programs\Micro
soft VS Code\bin
PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\Windows
PowerShell\v1.0\Modules
PYTHON_HOME=C:\Users\User\Anaconda3
REQUESTS_CA_BUNDLE=
SSL_CERT_FILE=

 active environment : base
active env location : C:\Users\User\anaconda3
        shell level : 1
   user config file : C:\Users\User\.condarc

populated config files : C:\Users\User.condarc
conda version : 4.8.2
conda-build version : 3.18.11
python version : 3.7.6.final.0
virtual packages : __cuda=10.2
base environment : C:\Users\User\anaconda3 (writable)
channel URLs : 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
package cache : C:\Users\User\anaconda3\pkgs
C:\Users\User.conda\pkgs
C:\Users\User\AppData\Local\conda\conda\pkgs
envs directories : C:\Users\User\anaconda3\envs
C:\Users\User.conda\envs
C:\Users\User\AppData\Local\conda\conda\envs
platform : win-64
user-agent : conda/4.8.2 requests/2.22.0 CPython/3.7.6 Windows/10 Windows/10.0.17763
administrator : False
netrc file : None
offline mode : False

already did, and this time not in custom installation and still cant install it

In that case it seems that the issue is not related to Spyder, but with Anaconda. There's not much that we can do to help you solve this, sorry. Try reporting the issue here https://github.com/ContinuumIO/anaconda-issues/issues/ to see if they can guide you better through this.

However, before running conda install spyder=4.1.3, you have to run conda update anaconda

Was this page helpful?
0 / 5 - 0 ratings