pycharm中导入模块错误时提示Try to run this command from the system terminal


Posted in Python onMarch 26, 2020

pycharm中导入模块错误时,提示:Try to run this command from the system terminal. Make sure that you use the correct version of ‘pip' installed for your Python interpreter located atpycharm工作路径。

安装好pycharm,而且Python中安装了keras,在pycharm中导入keras时提示如题信息;上网查找资料,需要先添加keras库,步骤如下:pycharm菜单栏 File >> Settings…然后单击Project >> Project Interpreter >> 在里面Project Interpreter界面最右边有个加号,单击加号,然后在搜索框输入keras/tiffile/matplotlib,找到后单击左下方的Install Package即可。一般情况下这样是可以成功的,但是报错,提示信息大概意思是pip版本不对。原来默认下载地址(https://pypi.python.org/simple)。

发现通过这种方法导入的keras模块和自己之前安装的不是python中安装的,是重新安装的。比如我的电脑之前anaconda中安装的是2.1.1版本 ,而这种方法是安装的2.3.1版本的。是否pycharm工作路径和python工作路径不一样,则需要重新下载安装需要的模块?

pycharm中导入模块错误时提示Try to run this command from the system terminal
pycharm中导入模块错误时提示Try to run this command from the system terminal
————————————————
pycharm中导入模块错误时提示Try to run this command from the system terminal

pycharm中导入模块错误时提示Try to run this command from the system terminal

pycharm中导入模块错误时提示Try to run this command from the system terminal

pycharm中导入模块错误时提示Try to run this command from the system terminal

参考该篇博客,在pycharm工作路径中下载安装需要的模块。

pycharm中导入模块错误时提示Try to run this command from the system terminal

pycharm中导入模块错误时提示Try to run this command from the system terminal

根据字面意思理解,一直以为是pip版本不对导致的,于是花费时间在更新pip版本上。根据导入模块时错误提示信息可以看出,我的pycharm路径为D:\u-net segmentation\venv\Scripts。在该径路下打开命令窗口,输入python.exe -m pip install matplotlib -i http://pypi.douban.com/simple --trusted-host pypi.douban.com。(豆瓣国内源)。可以看出,输入完毕后,之前只有numpy、pip以及setuptools三个库,现在多出6个包。一定要在错误中提示的路径下安装导入所需模块。如法炮制,把红色的matplotlib替换成你要安装的库就可以了。

python.exe -m pip install keras -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
python.exe -m pip install tiffile -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
python.exe -m pip install tensorflow -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

至此,花费半个下午的时间终于将需要的库安装成功。

总结

到此这篇关于pycharm中导入模块错误时提示错误的文章就介绍到这了,更多相关pycharm导入模块错误内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
python读取csv文件示例(python操作csv)
Mar 11 Python
python模拟enum枚举类型的方法小结
Apr 30 Python
使用Python实现租车计费系统的两种方法
Sep 29 Python
Python 数值区间处理_对interval 库的快速入门详解
Nov 16 Python
如何在Django中添加没有微秒的 DateTimeField 属性详解
Jan 30 Python
Python 互换字典的键值对实例
Feb 12 Python
Python 写入训练日志文件并控制台输出解析
Aug 13 Python
python GUI库图形界面开发之PyQt5信号与槽的高级使用技巧装饰器信号与槽详细使用方法与实例
Mar 06 Python
python数据库开发之MongoDB安装及Python3操作MongoDB数据库详细方法与实例
Mar 18 Python
jupyter notebook 多行输出实例
Apr 09 Python
python flappy bird小游戏分步实现流程
Feb 15 Python
python库Tsmoothie模块数据平滑化异常点抓取
Jun 10 Python
Python多进程编程常用方法解析
Mar 26 #Python
简单了解python调用其他脚本方法实例
Mar 26 #Python
Python tornado上传文件的功能
Mar 26 #Python
Python Tornado批量上传图片并显示功能
Mar 26 #Python
python列表删除和多重循环退出原理详解
Mar 26 #Python
执行Python程序时模块报错问题
Mar 26 #Python
python3 正则表达式基础廖雪峰
Mar 25 #Python
You might like
php下实现折线图效果的代码
2007/04/28 PHP
PHP数据库链接类(PDO+Access)实例分享
2013/12/05 PHP
PHP中HTML标签过滤技巧
2014/01/07 PHP
php使用NumberFormatter格式化货币的方法
2015/03/21 PHP
php mysqli查询语句返回值类型实例分析
2016/06/29 PHP
Thinkphp整合阿里云OSS图片上传实例代码
2019/04/28 PHP
如何在标题栏显示框架内页面的标题
2007/02/03 Javascript
javascript 建设银行登陆键盘
2008/06/10 Javascript
使用SyntaxHighlighter实现HTML高亮显示代码的方法
2010/02/04 Javascript
js ondocumentready onmouseover onclick onmouseout 样式
2010/07/22 Javascript
Iframe 自动适应页面的高度示例代码
2014/02/26 Javascript
javascript新闻跑马灯实例代码
2020/07/29 Javascript
javascript单页面手势滑屏切换原理详解
2016/03/21 Javascript
文本框只能输入数字的js代码(含小数点)
2016/07/10 Javascript
Angular 4依赖注入学习教程之组件服务注入(二)
2017/06/04 Javascript
javascript数组拍平方法总结
2018/01/20 Javascript
React为 Vue 引入容器组件和展示组件的教程详解
2018/05/03 Javascript
JS call()及apply()方法使用实例汇总
2020/07/11 Javascript
Python中的字典遍历备忘
2015/01/17 Python
单利模式及python实现方式详解
2018/03/20 Python
python Opencv将图片转为字符画
2021/02/19 Python
python3实现网络爬虫之BeautifulSoup使用详解
2018/12/19 Python
django项目中使用手机号登录的实例代码
2019/08/15 Python
python常用数据重复项处理方法
2019/11/22 Python
安装多个版本的TensorFlow的方法步骤
2020/04/21 Python
python对一个数向上取整的实例方法
2020/06/18 Python
python利用线程实现多任务
2020/09/18 Python
如何创建一个Flask项目并进行简单配置
2020/11/18 Python
Sandro Paris美国官网:典雅别致的法国时尚服饰品牌
2017/12/26 全球购物
我们在web应用开发过程中经常遇到输出某种编码的字符,如iso8859-1等,如何输出一个某种编码的字符串?
2014/03/30 面试题
教师演讲稿范文
2014/01/08 职场文书
2015大学生实训报告
2014/11/05 职场文书
六一儿童节开幕词
2015/01/29 职场文书
报名委托书
2015/01/29 职场文书
2016读书月活动心得体会
2016/01/14 职场文书
机关单位2016年创先争优活动总结
2016/04/05 职场文书