摘要: 命令和miniconda3是一样的。 显示当前配置: conda config --show 使用以下命令设置 Anaconda 的镜像(镜像可以极大加快下载包、安装包的速度): conda config --add channels https://mirrors.aliyun.com/anaco 阅读全文
posted @ 2021-05-31 23:42 emanlee 阅读(588) 评论(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 阅读(4966) 评论(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 阅读(5431) 评论(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 阅读(6959) 评论(0) 推荐(1)