Skip to content

HuangCongQing/Python

Repository files navigation

Python

Python学习 想在哪个文件夹下打开jupyter,就在相对应的文件夹下打开终端 运行 jupyter-notebook

点云相关处理

Tutorial

  • 安装requirement.txt中的包 pip3 install -r requirement.txt

学习网站:http://www.runoob.com/python3/python3-tutorial.html

学习视频网址:https://www.bilibili.com/video/av16926522/?p=2

学习视频网址:https://www.bilibili.com/video/BV1b7411N7P2

  • 解决Python代码编码问题 Non-UTF-8 code starting with '\xc4' in file 导致出错的根源就是编码问题。 解决方案是: 在程序最上面加上:
# coding=gbk  
  • Python 报错 TypeError: 'str' object is not callable
page = fi.write(str(response1.read()))  

原因是我的一个变量名叫str和python api的某个str函数名一样,导致

检查你的代码中变量的名字,看有没有变色的,就是设别为底层函数的即可

  • pip list

该命令查看的是Python安装的第三方模块。

self

命令行

  • 从shell中退出python命令:是. ... 从shell(终端)中退出python:. 1、输入命令行:$ exit(). 2、快捷键: ctrl+Z.

issues

  1. 同时装了Python3和Python2,怎么用pip?
  2. ImportError: DLL load failed: 找不到指定的模块。
  3. 安装Python模块时,报错[error] Microsoft Visual C++ 14.0 is required
  4. 出现ReadTimeoutError(self._pool, None, 'Read timed out.')
  5. python 各种包下载大全网址
  6. 如何简单地理解Python中的if name == 'main'
  7. python中出现IndentationError:unindent does not match any outer indentation level错误
  8. SyntaxError: invalid syntax
  9. TypeError: slice indices must be integers or None or have an index method
  10. UnicodeDecodeError: 'gbk' codec can't decode byte 0xa4 in position 115: ille
  11. 打开Anaconda Prompt 显示显示python已停止工作
  12. NoPackagesFoundError: Package missing in current win-64 channels: - cudatoolkit 7.5 2

学习资料及视频