摘要: 显示当前配置: conda config --show 使用以下命令设置Anaconda的镜像: conda config --add channels https://mirrors.aliyun.com/anaconda/pkgs/main/conda config --add channels 阅读全文
posted @ 2021-05-31 23:42 emanlee 阅读(557) 评论(0) 推荐(0)
摘要: conda install keras 现在tensorflow 2.4 支持 3.6 3.7 3.8 可以放心安装 pip install tensorflow Downloading https://mirrors.aliyun.com/pypi/packages/59/9b/tensorflo 阅读全文
posted @ 2021-05-31 23:22 emanlee 阅读(4955) 评论(0) 推荐(0)
摘要: from keras.utils import to_categorical module 'tensorflow.compat.v2' has no attribute '__internal__ from keras.utils import to_categorical $ python te 阅读全文
posted @ 2021-05-31 23:06 emanlee 阅读(5419) 评论(0) 推荐(0)
摘要: git pull = git fetch + git mergefetch同pull的区别在于:git fetch:是从远程获取最新版本到本地,不会自动merge.而git pull是从远程获取最新版本并merge到本地仓库.从安全角度出发,git fetch比git pull更安全,因为我们可以先 阅读全文
posted @ 2021-05-31 19:42 emanlee 阅读(6942) 评论(0) 推荐(1)