You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Install into a freshly created virtualenv with pip -e
Run txgen.py
Then get this error:
Traceback (most recent call last):
File "/home/theoretical/ve/tn/lib/python3.6/site-packages/pkg_resources/__init__.py", line 635, in _build_master
ws.require(__requires__)
File "/home/theoretical/ve/tn/lib/python3.6/site-packages/pkg_resources/__init__.py", line 943, in require
needed = self.resolve(parse_requirements(requirements))
File "/home/theoretical/ve/tn/lib/python3.6/site-packages/pkg_resources/__init__.py", line 834, in resolve
raise VersionConflict(dist, req).with_context(dependent_req)
pkg_resources.ContextualVersionConflict: (toml 0.9.3 (/home/theoretical/ve/tn/lib/python3.6/site-packages), Requirement.parse('toml==0.9.3.1'), {'steem'})
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/theoretical/ve/tn/bin/txgen.py", line 4, in <module>
__import__('pkg_resources').require('tinman==0.1')
File "/home/theoretical/ve/tn/lib/python3.6/site-packages/pkg_resources/__init__.py", line 2927, in <module>
@_call_aside
File "/home/theoretical/ve/tn/lib/python3.6/site-packages/pkg_resources/__init__.py", line 2913, in _call_aside
f(*args, **kwargs)
File "/home/theoretical/ve/tn/lib/python3.6/site-packages/pkg_resources/__init__.py", line 2940, in _initialize_master_working_set
working_set = WorkingSet._build_master()
File "/home/theoretical/ve/tn/lib/python3.6/site-packages/pkg_resources/__init__.py", line 637, in _build_master
return cls._build_from_requirements(__requires__)
File "/home/theoretical/ve/tn/lib/python3.6/site-packages/pkg_resources/__init__.py", line 650, in _build_from_requirements
dists = ws.resolve(reqs, Environment())
File "/home/theoretical/ve/tn/lib/python3.6/site-packages/pkg_resources/__init__.py", line 829, in resolve
raise DistributionNotFound(req, requirers)
pkg_resources.DistributionNotFound: The 'toml==0.9.3.1' distribution was not found and is required by steem
I am going to add requirements.txt, and then add -r requirements.txt to the command line, see if that fixes the issue.
The text was updated successfully, but these errors were encountered:
It works fine with non-editable install. This just means you have to do pip install --upgrade path/to/tinman whenever you edit the files in the tinman directory, which is a pain for iterative development :(
Do the following steps:
git clone
into a local directoryvirtualenv
withpip -e
txgen.py
Then get this error:
I am going to add
requirements.txt
, and then add-r requirements.txt
to the command line, see if that fixes the issue.The text was updated successfully, but these errors were encountered: