wxPython No module named wx

Trying to use wxPython but
VS 2017CE reports No module named wx
I have wxPython installed and running in Pyscripter and Idle
So I think it is installed.
So how do I make it visible to VS 2017 CE ?
TIA
Bob

Is VS2017 running the same instance of Python as you are with Pyscripter and Idle? Or does it have its own copy of Python? (Check the value of sys.prefix in each to find out.)

[quote=“Robin, post:2, topic:33057”]
Check the value of sys.prefix in each to find out.)
[/quote]S
How do I Check the value of sys.prefix in each to find out.
Also, could I check the value in VS ?

Also FWIW I have a copy of wxPython3.0-win32-3.0.2.0-py27
which makes me think that this was installed

" (Check the value of sys.prefix in each to find out.)"
What command do I use to do this? Within Python?

Run Python. In the interactive environment run these commands:

>>> import sys
>>> print(sys.prefix)

That will show you the installation prefix where the Python being executed is located. If they are different then you have at least 2 Python installed. My guess is that you have wxPython installed in one but not the other.

P.S. Version 3.0.2.0 is very old