user1202798
user1202798

Reputation: 11

pyodbc Installation Issue on Plone Python Path

How do you install pyodbc package on a Linux (RedHat server RHEL) onto a Zope/Plone bundled Python path instead of in the global Python path?

yum install pyodbc and python setup.py install, all put pyodbc in the sys python path.

I read articles about putting pyodbc in python2.4/site-packages/ I tried that, but it didn't work for my Plone external method, which still complains about no module named pyodbc.

Upvotes: 1

Views: 282

Answers (1)

vangheem
vangheem

Reputation: 3293

Add the package to the eggs section in buildout and then re-run buildout.

There might be additional server requirements to install pyodbc.

Upvotes: 1

Related Questions