ACCLAB / DABEST-python

Data Analysis with Bootstrapped ESTimation
https://acclab.github.io/DABEST-python/
Apache License 2.0
339 stars 47 forks source link

module 'dabest' has no attribute '__version__' #102

Closed pawansingh786125 closed 4 years ago

pawansingh786125 commented 4 years ago

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

josesho commented 4 years ago

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)?

pawansingh786125 commented 4 years ago

Thanks for your mail. The problem has been solved. The issue was regarding the settings update for Spyder. The code was taking some previously written code with dabest. After restarting multiple times the system and deleting the older programs written with dabest, it started working.

On Sat 30 May, 2020, 12:00 PM Joses W. Ho, notifications@github.com wrote:

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)?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/ACCLAB/DABEST-python/issues/102#issuecomment-636285860, or unsubscribe https://github.com/notifications/unsubscribe-auth/APYOWSAHDB677TLTJYUTZW3RUCRWPANCNFSM4NORMWFA .