①链接库超时问题
原命令:pip install jupyter tqdm opencv-python matplotlib pandas
错误:raise ReadTimeoutError(self._pool, None, "Read timed out.")pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
解决方法:
更换安装源 ------------网上可以查找很多豆瓣源如https://pypi.tuna.tsinghua.edu.cn/simple/pip install -ihttps://pypi.tuna.tsinghua.edu.cn/simplepyecharts pip install -ihttps://pypi.tuna.tsinghua.edu.cn/simple库名 出错使用这种 :pip install --index-url
修正:pip install --index-url https://pypi.tuna.tsinghua.edu.cn/simple/ opencv-python
②win10通过anaconda创建python虚拟环境的一些命令:
1、conda create -n your_env_name python=X.X(2.7、3.6等)
创建python版本为X.X、名字为your_env_name的虚拟环境。
2、激活虚拟环境。
activate your_env_name(虚拟环境名称)
3、对虚拟环境中安装额外的包。
conda install -n your_env_name [package]
4、关闭虚拟环境(即从当前环境退出返回使用PATH环境中的默认python版本)。
deactivate
5、删除虚拟环境。
conda remove -n your_env_name(虚拟环境名称) --all, 即可删除。
6、删除环境中的某个包。
conda remove --name your_env_name package_name 即可。
③总结解题思路