Anaconda Navigator๋ฅผ ์ ๋ฐ์ดํธ ํ์ ์ ๋ฐ๋ผ 1.9.12๋ฒ์ ์ผ๋ก ์ ๋ฐ์ดํธํ ์ดํ๋ถํฐ
Loading Applications์์ ๋ฉ์ถค ํ์์ด ์ผ์ด๋ฌ๊ณ , python์ด ์๋ต์์ ์ํ์ ๋น ์ง๋ ํ์์ด ์ผ์ด๋ฌ๋ค.
์ด๋์ ๋ ์ฝ์ง ๋์ ํด๊ฒฐํด์ ๋์์ด ๋๊ณ ์ ํด๋น ๋ด์ฉ์ ๊ณต์ ํ๋ค.
์ฑ๊ณตํ ๋ด์ฉ์ ๊ณต์ ํ๋ค.
์๋ ํ์ผ์์
anaconda์ค์น๊ฒฝ๋ก/Lib/site-packages/anaconda-navigator/api/conda_api.py
์๋์ ํจ์๋ฅผ ์ฐพ์ ๋ค์๊ณผ ๊ฐ์ด ์์ ํ๋ฉด ๋๋ค.
์ ํํ๋ data = yaml.full_load(f)
๋ฅผ data = yaml.safeload(f)
๋ก ์์ ํ๋ฉด ๋๋ค.
def load_rc(self, path=None, prefix=None, system=False):
"""
Load the raw conda configuration file using pyyaml.
Depending on path or specific environment prefix and system that
config file will be returned. If invalid or inexistent file, then an
empty dicionary is returned.
Parameters
----------
path : str
Path to conda configuration file.
prefix : str
Prefix path, to retrieve the specific prefix configuration file.
system : bool
Retrieve the system configuration file.
"""
if path:
config_path = path
elif prefix and self.environment_exists(prefix=prefix):
config_path = os.path.join(prefix, '.condarc')
elif system:
config_path = self.sys_rc_path
elif not system:
config_path = self.user_rc_path
else:
config_path = None
data = {}
if config_path and os.path.isfile(config_path):
with open(config_path) as f:
# data = yaml.full_load(f)
data = yaml.safeload(f)
return data
์๋ํด๋ณธ ๊ฒ๋ค ์ค ์คํจํ ๋ชฉ๋ก์ ์๋์ ๊ฐ๋ค.
- ์๋์ฝ๋ค ์ ๋ฐ์ดํธ
conda update conda
- ๋ค๋น๊ฒ์ดํฐ ์ญ์ ํ ์ฌ์ค์น
conda remove anaconda-navigator
conda install anaconda-navigator
- ํ๊ฒฝ ํ์ผ ์ญ์ (Windows์ ๊ฒฝ์ฐ C:\Users\์ฌ์ฉ์์ด๋ฆ ๊ฒฝ๋ก์์)
del .condarc
- anaconda-navigator ์ด๊ธฐํ
anaconda-navigator --reset
๋ชจ๋ ์คํจ์๋ค.
์ฐธ์กฐ: https://github.com/ContinuumIO/anaconda-issues/issues/9864
๋๊ธ