Posts by Michael Siegwarth • 3,427 points
53 posts
-
3
votes1
answer449
viewsA: Build of Sublime Text 2 gives different result than ipython on the command line
Probably Sublime Text is using another Python installation (which has not installed the Scipy library). To use the correct Python version, you need to modify a configuration in the file…
-
3
votes1
answer1015
viewsA: Scrolling Effect with Parallax Using Video
Since there is no specific CSS video background property, I improvised a solution using the tag <video> and a CSS that simulates a background. Positioning with absolute, and applying a z-index…
-
3
votes3
answers3281
viewsA: Sublime Text 2 - python error message /usr/bin/python: can’t find '__main__' module in ''
Probably missed saving the file you are wanting to run. If this doesn’t solve the problem, try creating a name file __main__.py in the same directory as the program. Inside it, do the import of the…