-
-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ModuleNotFoundError: No module named 'versioneer'
#502
Comments
Could you try to use EDIT: Ah, but the How/where is pyogrio getting installed in the above dockerfile? |
I am installing requirements.txt from within setup.py (i.e. So to my understanding it is just a standard pip install using the requirements.txt above. I do not have any versions pinned. |
I suppose that is not actually the case (not entirely sure though, just a quick guess). Because you are installing the package using setuptools ( If you would install the package with pip, at that point is is pip that takes care of installing the dependencies. If you don't want or can't change the installation invocation, I would maybe ensure to install the requirements with pip explicitly up front. |
I am trying to install pyogrio inside of Docker with Python 3.9 but I am getting an error that
versioneer
is not installed. I have triedpip install versioneer
and it did not help. I have tried upgradingpip
and messing around with a variety of permutations of the install process but it did not help. I wasn't clear what is wrong since I appear to have a supported Python version.This is an abbreviated version of my dockerfile with only the relevant installs
requirements.txt
error trace
The text was updated successfully, but these errors were encountered: