我正在尝试从yml文件安装以下conda环境:
{% load l10n %}
这样做时,环境的创建是可行的,但是,在激活环境后,我得到以下行为:
name: test
channels:
- conda-forge
- defaults
dependencies:
- python=3.6.8
- numpy=1.15.4 # optimized math operations
- scikit-learn=0.20.2 # machine learning library
- pandas=0.23.4 # data handling
- matplotlib=3.0.2 # visualization
- seaborn=0.9.0 # advanced visualization
- jupyter=1.0.0 # notebooks
- keras=2.2.4 # NNs
- pip:
- hdbscan==0.8.18 # clustering
在我看来,好像是某个代码在错误的“抽象层”上执行,即某些内容未正确关闭。
奇怪的是,当我创建一个空的环境并从一个接一个地安装软件包时(没有特定版本),一切都变得很吸引人。以上软件包版本是此逐步安装的结果。
我正在Windows 10上工作,我的conda信息是:
C:\Users\[username]>python
C:\ProgramData\Miniconda\envs\test\etc\keras\load_config.py 1>temp.txt
C:\Users\[username]>set /p KERAS_BACKEND= 0<temp.txt
C:\Users\[username]>del temp.txt
C:\Users\[username]>python -c "import keras" 1>nul 2>&1
有什么明显的我想念的吗?