python module dlls

后端 未结 4 1254

Is there a way to make a python module load a dll in my application directory rather than the version that came with the python installation, without making changes to the pytho

4条回答
  •  余生分开走
    2021-02-12 11:59

    If your version of sqlite is in sys.path before the systems version it will use that. So you can either put it in the current directory or change the PYTHONPATH environment variable to do that.

提交回复
热议问题