前提・実現したいこと
ある日突然Anaconda Navigatorが起動しなくなりました。
起動しようとしても何も起きません。
発生している問題・エラーメッセージ
Anaconda Promptから起動しようとしてもエラーが出ます。
(base) C:\Users\…>anaconda-navigator Traceback (most recent call last): File "C:\Users\…\Anaconda3\lib\site-packages\qtpy\__init__.py", line 204, in <module> from PySide import __version__ as PYSIDE_VERSION # analysis:ignore ModuleNotFoundError: No module named 'PySide' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:\Users\…\Anaconda3\Scripts\anaconda-navigator-script.py", line 6, in <module> from anaconda_navigator.app.main import main File "C:\Users\…\Anaconda3\lib\site-packages\anaconda_navigator\app\main.py", line 22, in <module> from anaconda_navigator.utils.conda import is_conda_available File "C:\Users\…\Anaconda3\lib\site-packages\anaconda_navigator\utils\__init__.py", line 15, in <module> from qtpy.QtGui import QIcon File "C:\Users\…\Anaconda3\lib\site-packages\qtpy\__init__.py", line 210, in <module> raise PythonQtError('No Qt bindings could be found') qtpy.PythonQtError: No Qt bindings could be found
試したこと
上記のエラーコードでModuleNotFoundError: No module named 'PySide'
と言われたのでconda install PySide
としましたが、
PackagesNotFoundError: The following packages are not available from current channels: - pyside
と言われました。
pip install PySideで試すと…
(base) C:\Users\…>pip install PySide Collecting PySide Downloading https://files.pythonhosted.org/packages/36/ac/ca31db6f2225844d37a41b10615c3d371587677efd074db29855e7035de6/PySide-1.2.4.tar.gz (9.3MB) |████████████████████████████████| 9.3MB 105kB/s ERROR: Command errored out with exit status 1: command: 'C:\Users\…\Anaconda3\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\Users\…\AppData\Local\Temp\pip-install-gqiarhro\PySide\setup.py'"'"'; __file__='"'"'C:\Users\…\AppData\Local\Temp\pip-install-gqiarhro\PySide\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base pip-egg-info cwd: C:\Users\…\AppData\Local\Temp\pip-install-gqiarhro\PySide\ Complete output (1 lines): only these python versions are supported: [(2, 6), (2, 7), (3, 2), (3, 3), (3, 4)] ---------------------------------------- ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
となってしまいました。
conda update conda
conda update --all
をしても変わらず、
conda update anaconda-navigator
をしたら今度は
(base) C:\Users\…>anaconda-navigator 'anaconda-navigator' は、内部コマンドまたは外部コマンド、 操作可能なプログラムまたはバッチ ファイルとして認識されていません。
と出るようになりました。
またAnacondaを再インストールしても,最初の状態に戻るだけでした。
補足情報
Windows10
Anaconda 2019.10 for Windows Installer
Python 3.7 version
64-Bit Graphical Installer
インストールするときデフォルトをPython3.7とする設定はONにしましたが、
非推奨のPathを追加する設定はONにせずダウンロードしました。
ダウンロード場所はC:\Users\…(実際は"…"に別の文字列が入っています。半角英小文字です。)
回答1件
あなたの回答
tips
プレビュー