Installing Keras package with conda install

前端 未结 2 1910
眼角桃花
眼角桃花 2021-01-05 15:39

I have installed Anaconda package on a server as a user account, then I installed keras by conda install keras,but after installation,

2条回答
  •  渐次进展
    2021-01-05 15:51

    Once creating the Conda environment, use the command below to list available environment:

    conda info -e
    

    Once activate your conda environment, you can try to install Keras by

    pip install keras==version_your_desired.
    

    Then use

    pip freeze
    

    to check the version.

提交回复
热议问题