
模块安装
kefnbsow
声明:博文的编写,是博主参考相关资料并结合个人见解所著,仅供学习、交流之用,如有错误,欢迎批评指正;如有侵权,请及时联系博主删除。
展开
-
安装 tensorflow报错:Cannot uninstall ‘wrapt‘. It is a distutils installed project and ......
TensorFlow 安装中断,报错:Found existing installation: wrapt 1.10.11Cannot uninstall 'wrapt'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.解决方法:pip install .原创 2020-09-24 21:10:12 · 1172 阅读 · 0 评论 -
Windows/Ubuntu 创建/删除虚拟环境
一、创建虚拟环境方法1:conda create -n your_name pip python=3.x # your_name是虚拟环境的名字注:有时会提示网络连接失败方法2:python3 -m venv your_name注:创建的虚拟环境位于当前目录二、进入虚拟环境Windows: conda activate your_nameUbuntu: source activate your_name/bin/activateAnaconda的虚拟环境(默认环境,命令行前以(ba原创 2020-06-28 17:24:28 · 11316 阅读 · 0 评论 -
Ubuntu 16.04环境下,安装 python-matplotlib
突然有一天运行代码 import matplotlib.pyplot as plt 时提示找不到 pyplot,但运行 import matplotlib 没有提示错误,在卸载matplotlib后重新安装,使用命令:sudo apt-get install python-matplotlib,安装完成后在程序中 import 时却提示:No module named ‘matplotlib’,使...原创 2018-05-08 15:45:24 · 6842 阅读 · 1 评论 -
安装 Anaconda 后,macos 终端 terminal 启动慢
**问题描述:**在 macOS 上,安装 anaconda3 之前,terminal 启动正常,安装后,terminal 启动要十几秒之久**解决方法:**安装 anaconda 过程中,会自动向文件 ~/.bash_profile (或,/Users/your_accout/.bash_profile)中写入以下内容:图中高亮部分即为自动添加的内容,用 # 注释掉就可以了。...原创 2019-08-12 17:07:29 · 1603 阅读 · 1 评论