Wpis z mikrobloga

@Wrath_of_the_Tyrant:
@Caly_na_bialo:
... Myślę, że dla laika "Put your script in your Python path." nic nie mówi. Mam w terminalu wejść do katalogu ze skryptem?

A potem odpalić to?:

from energydiagram import ED
diagram = ED()
diagram.add_level(0,'Separated Reactants')
diagram.add_level(-5.4,'mlC1')
diagram.add_level(-15.6,'mlC2','last',) #using 'last' it will be together with the previous level
diagram.add_level(28.5,'mTS1',color='g')
diagram.add_level(-9.7,'mCARB1')
diagram.add_level(-19.8,'mCARB2','last')
diagram.add_level(20,'mCARBX','last')
@Wrath_of_the_Tyrant:

A to:

from energydiagram import ED
diagram = ED()
diagram.add_level(0,'Separated Reactants')
diagram.add_level(-5.4,'mlC1')
diagram.add_level(-15.6,'mlC2','last',) #using 'last' it will be together with the previous level
diagram.add_level(28.5,'mTS1',color='g')
diagram.add_level(-9.7,'mCARB1')
diagram.add_level(-19.8,'mCARB2','last')
diagram.add_level(20,'mCARBX','last')

Mam w terminal wpisywać linijka po linijce, tak? Tylko zmienic na swoje dane?