-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
installation is unsuccessful #32
Comments
Pay attention to which python you installed it with. Best- |
I’ve found that sometimes |
My python is python3 and I used sudo pip3. |
What operating system? Are you using anaconda, some other type of virtual environtment manager, or your systems python? |
My python 3 is using anaconda. |
It can also be helpful to print the output of which python
which pip
python --version
pip --version to make sure they all agree (or |
/home/xuzhang/anaconda3/bin/python |
Try just running It should work, if not then you could just wait a few weeks and it'll likely have a few changes making it easier to install. |
I’m thinking that running pip with sudo is not using the anaconda version of pip. Sudo would likely point to the system version of pip. Try running without sudo or adding the |
Thank you @jeherr, I used Searching for Installed Optional Packages... When I run test.py, I got nans for every item. |
I followed your installation guide as
git clone https://github.com/jparkhill/TensorMol.git
cd TensorMol
If you are using python2x
sudo pip install -e .
If you are using python3x
sudo pip3 install -e .
I got
Successfully installed TensorMol-0.2
But when I run python test.py
I got
File "test.py", line 4, in
from TensorMol import *
ImportError: No module named 'TensorMol'
Any help is highly appreciated
The text was updated successfully, but these errors were encountered: