E2202 Required package ‘vcl’ not found

1. Error: tmsdXXXX.dpk(165) Fatal: E2202 Required package ‘vcl’ not found OR tmsdXXXX.dpk(165) Fatal: E2202 Required package ‘rtl’ not found

This means that your Delphi library path is not properly setup. Please make sure that the folder is included in your library path where vcl.dcp is located, this normally is $(BDS)\lib  继续阅读

win7 32位上python2.7 安装pysqlite

win7 32位上python2.7 安装pysqlite

使用pip install pysqlite时,出现

building ‘pysqlite2._sqlite’ extension

error: Microsoft Visual C++ 9.0 is required (Unable to find vcvarsall.bat). Get it from http://aka.ms/vcpython27

原因是比较明显

解决方法:

http://www.lfd.uci.edu/~gohlke/pythonlibs/

寻找对应的pysqlite的whl文件,下载下来

http://www.lfd.uci.edu/~gohlke/pythonlibs/3i673h27/pysqlite-2.8.1-cp27-none-win32.whl

使用

    pip install pysqlite-2.8.1-cp27-none-win32.whl

即可。