Hello! I have installed hoomd through miniconda and everything was ok and was working. But then I removed conda and hoomd and now I have reinstalled hoomd. But when I started with script from quick start tutorial I are looking now this:
[ ~Miniconda2]$ python
Python 2.7.12 |Continuum Analytics, Inc.| (default, Jun 29 2016, 11:08:50)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
Anaconda is brought to you by Continuum Analytics.
>>> import hoomd
HOOMD-blue v2.0.0 CUDA (7.5) DOUBLE HPMC_MIXED MPI SSE SSE2 SSE3
Compiled: 06/22/2016
Copyright 2009-2016 The Regents of the University of Michigan.
-----
You are using HOOMD-blue. Please cite the following:
* J A Anderson, C D Lorenz, and A Travesset. "General purpose molecular dynamics
simulations fully implemented on graphics processing units", Journal of
Computational Physics 227 (2008) 5342--5359
* J Glaser, T D Nguyen, J A Anderson, P Liu, F Spiga, J A Millan, D C Morse, and
S C Glotzer. "Strong scaling of general-purpose molecular dynamics simulations
on GPUs", Computer Physics Communications 192 (2015) 97--107
-----
>>> from hoomd _script import *
File "<stdin>", line 1
from hoomd _script import *
^
SyntaxError: invalid syntax
>>> context.initialize()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'context' is not defined
>>> # create 100 random particles of name A
... init.create_random(N=100, phi_p=0.01, name='A')
Traceback (most recent call last):
File "<stdin>", line 2, in <module>
NameError: name 'init' is not defined
>>> # specify Lennard-Jones interactions between particle pairs
... lj = pair.lj(r_cut=3.0)
Traceback (most recent call last):
File "<stdin>", line 2, in <module>
NameError: name 'pair' is not defined
>>> lj.pair_coeff.set('A', 'A', epsilon=1.0, sigma=1.0)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'lj' is not defined
>>> # integrate at constant temperature
... all = group.all();
Traceback (most recent call last):
File "<stdin>", line 2, in <module>
NameError: name 'group' is not defined
>>> integrate.mode_standard(dt=0.005)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'integrate' is not defined
>>> integrate.nvt(group=all, T=1.2, tau=0.5)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'integrate' is not defined
>>> # run 10,000 time steps
... run(10e3)
Traceback (most recent call last):
File "<stdin>", line 2, in <module>
NameError: name 'run' is not defined