「Anaconda設定等」の版間の差分
(ページの作成:「== Permission Denied問題 == こういう問題が出る場合。 <pre> ERROR conda.core.link:_execute_actions(337): An error occurred while installing package 'defaults...」) |
細 (→Windows 10でのFAiled to create Anaconda menusが表示される問題) |
||
(同じ利用者による、間の5版が非表示) | |||
1行目: | 1行目: | ||
+ | [[Anaconda]]の設定について。 | ||
+ | |||
== Permission Denied問題 == | == Permission Denied問題 == | ||
− | こういう問題が出る場合。 | + | こういう問題が出る場合。<ref>[https://github.com/conda/conda/issues/5507 Fresh install of conda owned by root fails to allow standard users to make new environments]</ref> |
<pre> | <pre> | ||
ERROR conda.core.link:_execute_actions(337): An error occurred while installing package 'defaults::dbus-1.10.10-0'. | ERROR conda.core.link:_execute_actions(337): An error occurred while installing package 'defaults::dbus-1.10.10-0'. | ||
13行目: | 15行目: | ||
<pre> | <pre> | ||
− | sudo chmod +r /opt/ | + | sudo chmod +r /opt/anaconda3/pkgs/dbus-1.10.10-0/bin/.dbus-post-link.sh |
− | sudo chmod +r /opt/ | + | sudo chmod +r /opt/anaconda3/pkgs/dbus-1.10.10-0/libexec/dbus-daemon-launch-helper |
</pre> | </pre> | ||
− | === | + | ==Windows 10でのFailed to create Anaconda menusが表示される問題== |
− | + | インストールの最終段階で発生。この問題が発生した場合、基本構成されるべきファイルなども設定されていないので、環境的に構築を失敗している。 | |
+ | |||
+ | ===回避法=== | ||
+ | コマンドプロンプトで<code>set path=</code>を実行後、そのプロンプトからインストーラーを開始させる。 | ||
+ | |||
+ | ==脚注== | ||
+ | <references/> | ||
+ | ==関連項目== | ||
+ | * [[Jupyter設定等]] | ||
[[Category:技術]] | [[Category:技術]] |
2018年1月7日 (日) 04:31時点における最新版
Anacondaの設定について。
Permission Denied問題
こういう問題が出る場合。[1]
ERROR conda.core.link:_execute_actions(337): An error occurred while installing package 'defaults::dbus-1.10.10-0'. PermissionError(13, 'Permission denied') Attempting to roll back. PermissionError(13, 'Permission denied')
ファイルのアクセス権を設定。
sudo chmod +r /opt/anaconda3/pkgs/dbus-1.10.10-0/bin/.dbus-post-link.sh sudo chmod +r /opt/anaconda3/pkgs/dbus-1.10.10-0/libexec/dbus-daemon-launch-helper
インストールの最終段階で発生。この問題が発生した場合、基本構成されるべきファイルなども設定されていないので、環境的に構築を失敗している。
回避法
コマンドプロンプトでset path=
を実行後、そのプロンプトからインストーラーを開始させる。