Skip to content Skip to sidebar Skip to footer

Running Python Locally In Aptana Studio 3

I recently installed Python 3.5.2 on Mac OS X El Capitan (Version 10.11.6). I (thought) I configured Aptana Studio 3 correctly so that it points at Python 3.5 when it runs any Pyth

Solution 1:

I was getting error messages because Aptana Studio (along with every other IDE) doesn't support testEqual. TestEqual only works in Active Code, the text editor that we're using (online) for the class I'm currently enrolled in. After removing:

from test import testEqual

and

testEqual( 

and then printing the sum_evens function:

print(sum_evens([2,3,4]))

The console prints the correct answer without any error messages.

Post a Comment for "Running Python Locally In Aptana Studio 3"