pangolin icon indicating copy to clipboard operation
pangolin copied to clipboard

Cannot import pangolin after install

Open KellyGui opened this issue 5 years ago • 2 comments

Hi, I run the install command and got this message, " running install copying ./pangolin.cpython-35m-x86_64-linux-gnu.so -> /home/gmp/miniconda3/envs/panoProject/lib/python3.8/site-packages"

When I import pangolin, it reports ModuleNotFoundError, as follows.

Python 3.8.5 (default, Sep 4 2020, 07:30:14) [GCC 7.3.0] :: Anaconda, Inc. on linux Type "help", "copyright", "credits" or "license" for more information.

import pangolin Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'pangolin'

Any suggestions?

KellyGui avatar Oct 21 '20 08:10 KellyGui

Does anyone solve it?

buster0051 avatar Jan 18 '21 13:01 buster0051

Try using python3.5 in your case -

aditya@aditya-desktop:~/workspace/pangolin$ python3.6
Python 3.6.9 (default, Jan 26 2021, 15:33:00) 
[GCC 8.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pangolin
>>> pangolin
<module 'pangolin' from '/home/aditya/workspace/pangolin/pangolin.cpython-36m-x86_64-linux-gnu.so'>
>>> 

truncs avatar Mar 10 '21 00:03 truncs