Welcome to PsychoPy3! v2023.1.3 ################ Running: /Users/Wu/Desktop/GUI_design/demo1.py ################ 2023-07-15 19:27:22.311 python[1509:19794] ApplePersistenceIgnoreState: Existing state will not be touched. New state will be written to /var/folders/cm/h6r34k6d7x5b9n9yg8m072_w0000gn/T/org.opensciencetools.psychopy.savedState 1.6979 WARNING psychopy.parallel has been imported on a Mac (which doesn't have a parallel port?) Traceback (most recent call last): File "/Users/Wu/Desktop/GUI_design/demo1.py", line 9, in <module> from utils.Resting import Resting File "/Users/Wu/Desktop/GUI_design/utils/Resting.py", line 7, in <module> from utils.basics.Score import Score File "/Users/Wu/Desktop/GUI_design/utils/basics/Score.py", line 7, in <module> from utils.basics.ratingscale import RatingScale File "/Users/Wu/Desktop/GUI_design/utils/basics/ratingscale.py", line 31, in <module> from past.builtins import basestring ModuleNotFoundError: No module named 'past' ################# Experiment ended with exit code 1 [pid:1509] #################怎么解决
时间: 2023-10-09 15:10:22 浏览: 219
根据错误信息,问题仍然是缺少名为'past'的模块。你可以尝试使用以下命令安装它:
```
pip install future
```
如果你使用的是 Python 3,请使用以下命令:
```
pip3 install future
```
如果安装成功,但问题仍然存在,请确保你的代码中正确导入了所需的模块,并且模块的路径是正确的。此外,还可以尝试更新 PsychoPy 到最新版本,以确保你使用的是最新的稳定版本。
如果问题仍然无法解决,可能需要进一步检查你的代码和依赖项,确保所有相关模块都已正确安装并可访问。
相关问题
http://47.115.201.187/web/0x01/#
根据提供的引用内容,http://47.115.201.187/web/0x01/# 是一个网址。根据引用的描述,这个网页中的内容是经过base64编码的。同时,引用提到可以使用Tor浏览器来打开这个网页。由此可以推断,打开这个网页后可能会显示一些与SYC{hav3_fUn_1n_darK}和Welcome2021相关的信息。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [【记】2021年第十二届极客大挑战](https://blog.csdn.net/weixin_46263782/article/details/120813945)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
将desktop文件中http://10.1.200.15:8090/#/unicardswipe 替换为http://10.1.200.3/board/welcome
可以使用sed命令来进行文件内容的替换,具体命令如下:
```
sed -i 's#http://10.1.200.15:8090/#/unicardswipe#http://10.1.200.3/board/welcome#g' your_desktop_file.desktop
```
其中,-i选项表示直接修改文件内容,而不是输出到终端。s命令则表示替换操作,#作为分隔符,避免了替换内容中包含/的情况影响到替换操作。your_desktop_file.desktop是待修改的desktop文件名,替换完成后,该文件中所有的http://10.1.200.15:8090/#/unicardswipe都会被替换为http://10.1.200.3/board/welcome。
阅读全文