当前位置: 首页 > news >正文

使用GPT需要注意的事项

        GPT出来之后,基本就告别浏览器搜索问题答案了。将问题原封不动的copy给GPT基本可以得到解答。
        但是这个也有弊端,那就是太依赖GPT了。
        1,使用GPT需要更强的专业知识:除了能问对问题,还要具备识别GPT"一本正经"的胡说八道的能力。
        2,传统的google搜索能力不能丢:如果GPT列出的几种方法均不能解决问题(比如一上午时间都不能解决问题),那么应该回归google, 这里可能很容易就能找到答案。

        对于2的经验,举个例子,在centos7系统上,编译python3.9,遇到下面的问题:
        gcc -pthread -Xlinker -export-dynamic -o python Programs/python.o libpython3.9.a -lcrypt -lpthread -ldl -lutil -lm -lm gcc -pthread -Xlinker -export-dynamic -o Programs/_testembed Programs/_testembed.o libpython3.9.a -lcrypt -lpthread -ldl -lutil -lm -lm ./python -E -S -m sysconfig --generate-posix-vars ;\ if test $? -ne 0 ; then \ echo "generate-posix-vars failed" ; \ rm -f ./pybuilddir.txt ; \ exit 1 ; \ fi Could not import runpy module Traceback (most recent call last): File "/data1/python3.9.18/Python-3.9.18/Lib/runpy.py", line 15, in <module> import importlib.util File "/data1/python3.9.18/Python-3.9.18/Lib/importlib/util.py", line 2, in <module> from . import abc File "/data1/python3.9.18/Python-3.9.18/Lib/importlib/abc.py", line 17, in <module> from typing import Protocol, runtime_checkable File "/data1/python3.9.18/Python-3.9.18/Lib/typing.py", line 21, in <module> import collections SystemError: <built-in function compile> returned NULL without setting an error generate-posix-vars failed make[1]: *** [pybuilddir.txt] Error 1 make[1]: Leaving directory `/data1/python3.9.18/Python-3.9.18' make: *** [profile-opt] Error 2

        GPT看似会给出几种解决问题的方法,但是却都是难以实行的。但是使用 google 一通后,问题仅仅是一个 configure 参数的问题:
        

http://www.lryc.cn/news/334084.html

相关文章:

  • 学习人工智能:为何PyTorch深度学习框架不可或缺
  • Python基于Tkinter的加法游戏
  • 基于Springboot4S店车辆管理系统
  • 深入浅出 -- 系统架构之分布式架构
  • 6. Z 字形变换(Java)
  • 【Linux入门】用户的基本指令
  • 3.9 Python格式化字符串
  • Linux驱动学习:从Linux主机nfs共享文件到uboot
  • Linux下场景模拟--cpu、内存打满测试
  • Vue中watch与计算属性computed
  • nginx部署前端教程
  • 设计模式:工厂模式
  • 系统监测工具-tcpdump的使用
  • Java智慧校园系统源码 微信小程序+电子班牌
  • OpenAI Sora:浅析文生视频模型Sora以及技术原理简介
  • canal部署
  • 001集——在线网络学习快速完成——16倍速度
  • golang web 开发 —— gin 框架 (gorm 链接 mysql)
  • 区块链相关概念
  • 文章解读与仿真程序复现思路——电力系统自动化EI\CSCD\北大核心《考虑灵活爬坡产品的虚拟电厂两阶段分布鲁棒优化运营策略》
  • 2.k8s架构
  • xss.pwnfunction-Ligma
  • 分布式限流——Redis实现令牌桶算法
  • 鸿蒙原生应用已超4000个!
  • manga-ocr漫画日文ocr
  • STL、Vector和Set的讲解和例题分析
  • Android 13 aosp hiddenapi config
  • 数据仓库面试总结
  • git Failed to connect to 你的网址 port 8282: Timed out
  • [C++][算法基础]堆排序(堆)