ACCLAB/DABEST-python

module 'dabest' has no attribute '__version__'

Closed this issue · 2 comments

After installation this error is shown on console.
import dabest
print("We're using DABEST v{}".format(dabest .version))

console:

File "C:/Users/doctor/.spyder-py3/learn dabest.py", line 14, in
print("We're using DABEST v{}"(dabest .version))

AttributeError: module 'dabest' has no attribute 'version

Hi,

Are you running

print("We're using DABEST v{}".format(dabest.__version__))

(which is correct)

or

print("We're using DABEST v{}".format(dabest.version))

(which is wrong)?