Python Forum
Sympy Import error: "unresolved referrence 'sympy' " - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Sympy Import error: "unresolved referrence 'sympy' " (/thread-11825.html)



Sympy Import error: "unresolved referrence 'sympy' " - BoaCoder3 - Jul-27-2018

I'm writing a program that needs to be able to perform arithmetic,for which I'm trying to use the sympy library. To make things easier I installed it in a virtual environment (virtualenv) like this:
pip3 install sympy
Unfortunately I'm having trouble when importing it:
Error:
Unresolved referrence 'sympy'
This is how I imported it:
from sympy import *
In an attempt to fix this I went into my virtualenv files to see if it's installed properly, the files I found were as follows: isympy.txt in /bin, isympy.txt in /share/man/man1, and nothing of sympy in lib and include. In order to fix this I removed and reinstalled sympy, however, everything is still exactly the same as before, can anyone please tell me what went wrong and how to fix it?