1. 今天用台式机电脑运行pycharm程序是出现pycharm系统找不到指定的文件 createprocesserror=2;通过查找,在https://blog.csdn.net/cekong05011/article/details/107656699网页中给出了解决方法,主要是设置“Run/Debug Configurations下的Python interpreter路径设置正确”解决问题。
2 在anconda中安装tushare,采用conda install tushare ,提示错误,不能安装,使用pip install tushare安装成功。
3.anconda不同的用户环境: https://blog.csdn.net/AIHUBEI/article/details/104513825/网页中有介绍,主要的命令有:
查看已有虚拟环境 conda info --envs 或者conda env list
创建虚拟环境:conda create --name newName python=3.7
切换虚拟环境:conda activate envName
4.安装tushare时使用conda install tushare总是报在镜像源中没有赵到,pip install tushare时按照一个1.几M的文件时报超时错误,后来从https://blog.csdn.net/anglemanyi/article/details/112647242按照
pip install tushare -i https://mirrors.aliyun.com/pypi/simple/ 秒速安装成功