0

Im using Pycharm and trying to import couchbase using python 3.7.3

    Traceback (most recent call last):
  File "C:/Users/sergi/PycharmProjects/cocuhbase_exemple/couchbase_exemple.py", line 2, in <module>
    import couchbase
  File "C:\Users\sergi\.virtualenvs\sergi-4BQybWtk\lib\site-packages\couchbase\__init__.py", line 1, in <module>
    import couchbase_core._bootstrap
  File "C:\Users\sergi\.virtualenvs\sergi-4BQybWtk\lib\site-packages\couchbase_core\__init__.py", line 45, in <module>
    import couchbase_core._libcouchbase as _LCB
ImportError: DLL load failed: The specified module could not be found.

any suggestion?

Flimzy
  • 68,325
  • 15
  • 126
  • 165
sergio
  • 19
  • 2
  • 1
    Does this answer your question? [ImportError: DLL load failed: The specified module could not be found](https://stackoverflow.com/questions/20201868/importerror-dll-load-failed-the-specified-module-could-not-be-found) – Zero Pancakes Feb 06 '21 at 15:34
  • unfortunately no – sergio Feb 06 '21 at 17:46
  • 1
    Why did you tag this question with couchdb if it's about couchbase – Flimzy Feb 06 '21 at 21:11

1 Answers1

1

Try:

pip install couchbase==3.0.1

I had the same problem for latest version of couchbase. this solved !

Nikhil MVS
  • 21
  • 1
  • 4