创建conda虚拟环境
conda create -n yourEnvname python=3.6
安装相关的包
conda install keras==2.2.4
用清华源安装
pip3 install pandas==0.24.0 -i https://pypi.mirrors.ustc.edu.cn/simple
装好环境后,将代码与pycharm远程连接
- 在File的Settings里面添加路径
- 在Tools里面设置
创建conda虚拟环境
conda create -n yourEnvname python=3.6
安装相关的包
conda install keras==2.2.4
用清华源安装
pip3 install pandas==0.24.0 -i https://pypi.mirrors.ustc.edu.cn/simple
装好环境后,将代码与pycharm远程连接