In a freshly created Python v3.7.3 virtualenv where I installed rubyenv using
When running
I get the following error
Traceback (most recent call last):
File ".../.virtualenvs/.../bin/rubyenv", line 6, in <module>
from rubyenv import main
File ".../.virtualenvs/.../lib/python3.7/site-packages/rubyenv/__init__.py", line 1, in <module>
import six
ModuleNotFoundError: No module named 'six'
Expected behaviour: pip install rubyenv should result in six being installed since it is required.
Suspected problem: the rubyenv package does not list six as a dependency / requirement even though it imports it.
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 rubyenvshould result insixbeing installed since it is required.Suspected problem: the rubyenv package does not list
sixas a dependency / requirement even though it imports it.