永久设置Python模块搜索路径
1. PYTHONPATH
2. .pth文件
3. PyCharm
临时设置Python模块搜索路径
1. sys.path
import sys
sys.path.append(path)
2. 临时设置PYTHONPATH