user3561382
user3561382

Reputation: 31

Unable to visual python (vpython) in Enthought Canopy on Windows 7

I installed Enthought Canopy (free version) on Windows 7.

I wanted to install visual python (vpython).

I tried everything, pip install vpython, isn't available.

Tried to download the latest zip, from here: https://codeload.github.com/BruceSherwood/vpython-wx/zip/master and then I introduced in the Canopy console: pip install/directory/vpython-wx-src.6.05b.zip (the correct directory and filename).

Doesn't install and this appear:

Unpacking c:\users\teo\downloads\vpython-wx-src.6.05b.zip
Running setup.py egg_info for package from file:///c%7C%5Cusers%5Cteo%5Cdownloads%5Cvpython-wx-src.6.05b.zip
Downloading http://pypi.python.org/packages/source/d/distribute/distribute-0.6.34.tar.gz
Extracting in c:\users\teo\appdata\local\temp\tmprfdxhf
Now working in c:\users\teo\appdata\local\temp\tmprfdxhf\distribute-0.6.34
Building a Distribute egg in c:\users\teo\appdata\local\temp\pip-e84ef9-build
c:\users\teo\appdata\local\temp\pip-e84ef9-build\distribute-0.6.34-py2.7.egg

warning: no files found matching 'site-packages\visual\docs\navigation.js'
Downloading/unpacking fontTools (from VPython==6.05)
Downloading FontTools-2.4.tar.gz (323Kb): 323Kb downloaded
Running setup.py egg_info for package fontTools
C:\Users\Teo\AppData\Local\Enthought\Canopy\App\appdata\canopy-1.3.0.1715.win-x86_64\lib\distutils\dist.py:267:
UserWarning: Unknown distribution option: 'console'
warnings.warn(msg)
WARNING: '' not a valid package name; please use only.-separated package names in setup.py

warning: no files found matching 'Doc\ChangeLog'
Downloading/unpacking Polygon (from VPython==6.05)
Could not find any downloads that satisfy the requirement Polygon (from VPython==6.05)
No distributions at all found for Polygon (from VPython==6.05)
Storing complete log in C:\Users\Teo\AppData\Roaming\pip\pip.log

Can someone help me? In Enthought support it says: "If you have questions that are not answered there, please post them to Stack Overflow with tag "enthought"", but I'm not able to tag it.

Edit: As the log file was to big to post it here, it is here:

http://www51.zippyshare.com/v/47998264/file.html

Upvotes: 1

Views: 1436

Answers (1)

Jonathan March
Jonathan March

Reputation: 5810

The quickest way to install vpython in Enthought Canopy is to

  1. Be sure that you have made Canopy be your default Python (Preferences Menu).

  2. Download and install Chris Gohlke's VPython installer for Windows: http://www.lfd.uci.edu/~gohlke/pythonlibs/#vpython

Upvotes: 1

Related Questions