Mariska
Mariska

Reputation: 1949

Installing Q package for Python 2.7 on Win 64-bit

I am trying to install the Q connection library for Python by Dan Nugent (https://github.com/nugend/q). However, I don't see any installer in the package. How should I properly install this package for Python 2.7 64-bit?

Upvotes: 0

Views: 62

Answers (1)

Ross Ridge
Ross Ridge

Reputation: 39651

Since it's a pure Python package you don't need to anything other than download all the .py files into their own directory. Either make it a subdirectory of the lib\site-packages directory in your Python installation, or a subdirectory of the project you want to use it.

Upvotes: 1

Related Questions