Paid service!
can anyone help me install python couchbase Development environment at windows server 2008 r2?
contact me:
zxyang178@126.com
Hi @zxyang178, you should be able to download the Python library installers from here:
Currently, for Windows, we have only published installers for Python 2.7-3.4 on x86/AMD64 architectures. Hopefully we will soon publish Python 3.6 installers.
If you don’t have a matching version of Python on Windows, and are unable to install one, you can install it from scratch as follows:
Determine which Visual Studio version your version of Python was built with:
Install the relevant version of the Visual Studio compiler.
Download the Windows libcouchbase installer matching this version from here:
https://developer.couchbase.com/server/other-products/release-notes-archives/c-sdk
Then check out the version of Python Couchbase Client code you want from here:
e.g.
git clone https://github.com/couchbase/couchbase-python-client.git
cd couchbase-python-client
git checkout tags/2.3.5
python setup.py build_ext --inplace
python setup.py install
Couchbase Python Client should then be installed.
Hope that helps,
Thanks,
Ellis
thank you very much,i’ll try .