1.実現したいこと
アナコンダ・ナビゲーターを起動し、仮想環境の構築をしたい。
2.前提
ナビゲーター、Spyderは開けない
アナコンダpowershell prompt, command prompt, jupyter-notebookは開ける。
3.試したこと
・clean --all
・アンインストール後再インストール。
・C:\Users\anaconda3\Library\binに存在している下記の4つのファイル
libcrypto-1_1-x64.dll
libcrypto-1_1-x64.pdb
libssl-1_1-x64.dll
libssl-1_1-x64.pdb
を、C:\Users\anaconda3\DLLsにコピペする。という記事も試しましたが駄目でした。
・追記
windows 21H2
python3.8.8
anaconda3-2201.05 のconda4.13.0
になります。
現状
conda update condaと入力後anaconda-navigator --resetで
「Anaconda Navigator configuration reset successful!」と表示され
「anaconda-navigator」と入力したら以下のようなエラーが出ました。
conda.prompt
1Traceback (most recent call last): 2 File "C:\Users\phanton\anaconda3\lib\site-packages\qtpy\__init__.py", line 204, in <module> 3 from PySide import __version__ as PYSIDE_VERSION # analysis:ignore 4ModuleNotFoundError: No module named 'PySide' 5 6During handling of the above exception, another exception occurred: 7 8Traceback (most recent call last): 9 File "C:\Users\phanton\anaconda3\Scripts\anaconda-navigator-script.py", line 10, in <module> 10 sys.exit(main()) 11 File "C:\Users\phanton\anaconda3\lib\site-packages\anaconda_navigator\app\main.py", line 112, in main 12 from anaconda_navigator.app.start import start_app 13 File "C:\Users\phanton\anaconda3\lib\site-packages\anaconda_navigator\app\start.py", line 19, in <module> 14 from qtpy import PYQT5 15 File "C:\Users\phanton\anaconda3\lib\site-packages\qtpy\__init__.py", line 210, in <module> 16 raise PythonQtError('No Qt bindings could be found') 17qtpy.PythonQtError: No Qt bindings could be found
モジュールPysideが見つからないらしいので
pip install Pysideと入力したところ赤文字で以下のエラーが出ました。
conda/prompt
1(base) C:\Users\phanton>pip install Pyside 2Collecting Pyside 3 Using cached PySide-1.2.4.tar.gz (9.3 MB) 4 ERROR: Command errored out with exit status 1: 5 command: 'C:\Users\phanton\anaconda3\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\phanton\\AppData\\Local\\Temp\\pip-install-r9zbovud\\pyside_2771c6e99736466bacc88540892396b3\\setup.py'"'"'; __file__='"'"'C:\\Users\\phanton\\AppData\\Local\\Temp\\pip-install-r9zbovud\\pyside_2771c6e99736466bacc88540892396b3\\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 'C:\Users\phanton\AppData\Local\Temp\pip-pip-egg-info-p9wl2alu' 6 cwd: C:\Users\phanton\AppData\Local\Temp\pip-install-r9zbovud\pyside_2771c6e99736466bacc88540892396b3\ 7 Complete output (1 lines): 8 only these python versions are supported: [(2, 6), (2, 7), (3, 2), (3, 3), (3, 4)] 9 ---------------------------------------- 10WARNING: Discarding https://files.pythonhosted.org/packages/36/ac/ca31db6f2225844d37a41b10615c3d371587677efd074db29855e7035de6/PySide-1.2.4.tar.gz#sha256=1421bc1bf612c396070de9e1ffe227c07c1f3129278bc7d30c754b5146be2433 (from https://pypi.org/simple/pyside/). Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. 11ERROR: Could not find a version that satisfies the requirement Pyside 12ERROR: No matching distribution found for Pyside
知識不足でかれこれ2時間、このエラーと向き合ってます。
お力添えをお願いします。。
