is this normal?
nbecker opened this issue · 5 comments
nbecker commented
Built from latest git master (on linux):
import randomstate
In [3]: import randomstate.prng
In [4]: import randomstate.prng.dsfmt
In [10]: import randomstate.prng.sfmt
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-10-0fd7f600ff12> in <module>()
----> 1 import randomstate.prng.sfmt
ModuleNotFoundError: No module named 'randomstate.prng.sfmt'
bashtage commented
You probably need to rebuild the binary modules since sfmt was only recently added.
Safest way when using a clone of the repo:
pip uninstall randomstate -y
python setup.py clean
git -xfd
python setup.py installNote that git xfd is dangerous if you have anything in the repo that you care about.
nbecker commented
git -xfd
Unknown option: -xfd
bashtage commented
Sorry, should be git clean -xfd
bashtage commented
Is this solved?
nbecker commented
Yes, all is well
…On Sun, Aug 6, 2017, 2:40 AM Kevin Sheppard ***@***.***> wrote:
Is this solved?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#103 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAHK0LFC85yKht55Flo2tBn3mQ82Ds0uks5sVV_kgaJpZM4OqJeh>
.