计算化学公社

 找回密码 Forget password
 注册 Register
Views: 4985|回复 Reply: 4
打印 Print 上一主题 Last thread 下一主题 Next thread

[Python] pycharm编译一个代码出现问题

[复制链接 Copy URL]

609

帖子

2

威望

4351

eV
积分
5000

Level 6 (一方通行)

import numpy as np
import matplotlib as mpl
import matplotlib.pyplot as plt

# 通过rcParams设置全局横纵轴字体大小
mpl.rcParams['xtick.labelsize'] = 24
mpl.rcParams['ytick.labelsize'] = 24

np.random.seed(42)

# x轴的采样点
x = np.linspace(0, 5, 100)

# 通过下面曲线加上噪声生成数据,所以拟合模型就用y了……
y = 2 * np.sin(x) + 0.3 * x ** 2
y_data = y + np.random.normal(scale=0.3, size=100)

# figure()指定图表名称
plt.figure('data')

# '.'标明画散点图,每个散点的形状是个圆
plt.plot(x, y_data, '.')

# 画模型的图,plot函数默认画连线图
plt.figure('model')
plt.plot(x, y)

# 两个图画一起
plt.figure('data & model')

# 通过'k'指定线的颜色,lw指定线的宽度
# 第三个参数除了颜色也可以指定线形,比如'r--'表示红色虚线
# 更多属性可以参考官网:http://matplotlib.org/api/pyplot_api.html
plt.plot(x, y, 'k', lw=3)

# scatter可以更容易地生成散点图
plt.scatter(x, y_data)

# 将当前figure的图保存到文件result.png
plt.savefig('result.png')

# 一定要加上这句才能让画好的图显示在屏幕上
plt.show()


出现问题:D:\pycharmfiles\new\Scripts\python.exe "F:\PyCharm 2019.1.1\helpers\pydev\pydevconsole.py" --mode=client --port=5760Traceback (most recent call last):  File "F:\PyCharm 2019.1.1\helpers\pydev\pydevconsole.py", line 33, in <module>    from _pydev_bundle.pydev_console_utils import BaseInterpreterInterface  File "F:\PyCharm 2019.1.1\helpers\pydev\_pydev_bundle\pydev_console_utils.py", line 11, in <module>    from _pydevd_bundle import pydevd_thrift  File "F:\PyCharm 2019.1.1\helpers\pydev\_pydevd_bundle\pydevd_thrift.py", line 17, in <module>    from pydev_console.protocol import DebugValue, GetArrayResponse, ArrayData, ArrayHeaders, ColHeader, RowHeader, \  File "F:\PyCharm 2019.1.1\helpers\pydev\pydev_console\protocol.py", line 6, in <module>    _console_thrift = _shaded_thriftpy.load(os.path.join(os.path.dirname(os.path.realpath(__file__)), "console.thrift"),  File "F:\PyCharm 2019.1.1\helpers\third_party\thriftpy\_shaded_thriftpy\parser\__init__.py", line 29, in load    thrift = parse(path, module_name, include_dirs=include_dirs,  File "F:\PyCharm 2019.1.1\helpers\third_party\thriftpy\_shaded_thriftpy\parser\parser.py", line 502, in parse    parser.parse(data)  File "F:\PyCharm 2019.1.1\helpers\third_party\thriftpy\_shaded_ply\yacc.py", line 331, in parse    return self.parseopt_notrack(input, lexer, debug, tracking, tokenfunc)  File "F:\PyCharm 2019.1.1\helpers\third_party\thriftpy\_shaded_ply\yacc.py", line 1106, in parseopt_notrack    p.callable(pslice)  File "F:\PyCharm 2019.1.1\helpers\third_party\thriftpy\_shaded_thriftpy\parser\parser.py", line 212, in p_struct    val = _fill_in_struct(p[1], p[3])  File "F:\PyCharm 2019.1.1\helpers\third_party\thriftpy\_shaded_thriftpy\parser\parser.py", line 765, in _fill_in_struct    gen_init(cls, thrift_spec, default_spec)  File "F:\PyCharm 2019.1.1\helpers\third_party\thriftpy\_shaded_thriftpy\thrift.py", line 103, in gen_init    cls.__init__ = init_func_generator(default_spec)  File "F:\PyCharm 2019.1.1\helpers\third_party\thriftpy\_shaded_thriftpy\_compat.py", line 102, in init_func_generator    new_code = types.CodeType(len(varnames),TypeError: an integer is required (got type bytes)Process finished with exit code 1
请高手帮忙解决下?

3098

帖子

28

威望

1万

eV
积分
16892

Level 6 (一方通行)

2#
发表于 Post on 2020-2-6 01:43:06 | 只看该作者 Only view this author
本帖最后由 liyuanhe211 于 2020-2-6 05:26 编辑

Python直接叫运行不叫编译。

以后贴代码和程序输出的时候用论坛里的代码功能。

你的代码在我的PyCharm里运行正常,Anaconda 5.1.0 配 Pycharm 2019.2

调代码得有化简问题的意识,看着有点像是环境配置的问题可以先排除试试比如Pycharm能不能运行简单Python脚本(无外部库),再试试不通过Pycharm直接cmd里用python Path\to\script.py看能不能运行,如果这俩可以的话说明可能是PyCharm的SciView对接的事,先不用SciView在PyCharm里运行它看看。

评分 Rate

参与人数
Participants 1
eV +2 收起 理由
Reason
sobereva + 2

查看全部评分 View all ratings

2479

帖子

11

威望

6864

eV
积分
9563

Level 6 (一方通行)

3#
发表于 Post on 2020-3-23 21:36:26 | 只看该作者 Only view this author
liyuanhe211 发表于 2020-2-6 01:43
Python直接叫运行不叫编译。

以后贴代码和程序输出的时候用论坛里的代码功能。

阿拉还是喜欢sublime和VScode的风格,pycharm敬而远之了。

33

帖子

0

威望

124

eV
积分
157

Level 3 能力者

4#
发表于 Post on 2020-3-27 09:49:18 | 只看该作者 Only view this author
可能是python3.8的版本导致的,看您的是2019.1的pycharm,可以升级pycharm或者降级python3

609

帖子

2

威望

4351

eV
积分
5000

Level 6 (一方通行)

5#
 楼主 Author| 发表于 Post on 2020-3-27 13:12:26 | 只看该作者 Only view this author
xp47 发表于 2020-3-27 09:49
可能是python3.8的版本导致的,看您的是2019.1的pycharm,可以升级pycharm或者降级python3

多谢兄台回复。

本版积分规则 Credits rule

手机版 Mobile version|北京科音自然科学研究中心 Beijing Kein Research Center for Natural Sciences|京公网安备 11010502035419号|计算化学公社 — 北京科音旗下高水平计算化学交流论坛 ( 京ICP备14038949号-1 )|网站地图

GMT+8, 2024-11-27 17:52 , Processed in 0.252225 second(s), 22 queries , Gzip On.

快速回复 返回顶部 返回列表 Return to list