-
Notifications
You must be signed in to change notification settings - Fork 5
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
Dependency on 'six' and 'past' modules cause ModuleNotFoundError in a fresh Python 3(.7.3) virtualenv #3
Comments
Tried to work around the problem with pip install six But then rubyenv install 2.4.2 causes the error
Which can't be installed at all $ pip install past
Collecting past
Could not find a version that satisfies the requirement past (from versions: )
No matching distribution found for past Not a python expert, could it be that python 3 is simply not supported? |
I managed to resolve the dependency on
|
So, in summary, in a fresh python 3 Virtualenv, I'd expect $ pip install rubyenv to result in the installation of |
Yeah, those should be declared as dependencies. |
Fixed with #6 |
In a freshly created Python v3.7.3 virtualenv where I installed rubyenv using
When running
I get the following error
Expected behaviour:
pip install rubyenv
should result insix
being installed since it is required.Suspected problem: the rubyenv package does not list
six
as a dependency / requirement even though it imports it.The text was updated successfully, but these errors were encountered: