Irfan Ghaffar7
Irfan Ghaffar7

Reputation: 1185

ImportError: No module named visual

I am trying to run this Python Program on Ubuntu but I am getting an error that says

ImportError: No module named visual

Can you guys please guide me on how can I resolve this issue?

Upvotes: 10

Views: 35416

Answers (3)

InterestingGuy
InterestingGuy

Reputation: 51

You can download a Python27 compatible version of vpython here (direct link).

To use vpython, you should run your code through VIDLE which should've also been installed. Through VIDLE, the syntax "visual" should be accepted. This worked for me.

Upvotes: 0

bhaskarc
bhaskarc

Reputation: 9521

visual module has been renamed to vpython lately.

So to run this now, you first install vpython like:

sudo pip3 install vpython 

then replace the line:

from visual import *

with

from vpython import *

That worked for me.

Upvotes: 16

noɥʇʎԀʎzɐɹƆ
noɥʇʎԀʎzɐɹƆ

Reputation: 10647

The script requires Vpython to be installed.

Then, make sure it is actually installed. Alternatively, move the library into your local folder. If it still doesn't work, check for an __init__ file.

Upvotes: 5

Related Questions