Stefan Scherfke | 1 Feb 07:55
Gravatar

Re: Simpy 2.3.1

Which version of Python do you have? SimPy 2.3 requires at least Python 2.6.

cheers,
Stefan

Am 2012-01-31 um 14:05 schrieb John:

> I’ve installed Simpy 2.3.1 and tried to ‘compile’ bakery.py, this is reporting an error  in
Simulation.py, line 564
> 
> “except FatalSimError as error:”
> 
> 
> Regards,
> 
> John
> 
> ------------------------------------------------------------------------------
> Keep Your Developer Skills Current with LearnDevNow!
> The most comprehensive online learning library for Microsoft developers
> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
> Metro Style Apps, more. Free future releases when you subscribe now!
> http://p.sf.net/sfu/learndevnow-d2d_______________________________________________
> Simpy-users mailing list
> Simpy-users <at> lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/simpy-users

------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
(Continue reading)

Stefan Scherfke | 1 Feb 07:56
Gravatar

Re: Simpy 2.3.1

And what is bakery.py?

Am 2012-02-01 um 07:55 schrieb Stefan Scherfke:

> Which version of Python do you have? SimPy 2.3 requires at least Python 2.6.
> 
> cheers,
> Stefan
> 
> 
> Am 2012-01-31 um 14:05 schrieb John:
> 
>> I’ve installed Simpy 2.3.1 and tried to ‘compile’ bakery.py, this is reporting an error  in
Simulation.py, line 564
>> 
>> “except FatalSimError as error:”
>> 
>> 
>> Regards,
>> 
>> John
>> 
>> ------------------------------------------------------------------------------
>> Keep Your Developer Skills Current with LearnDevNow!
>> The most comprehensive online learning library for Microsoft developers
>> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
>> Metro Style Apps, more. Free future releases when you subscribe now!
>> http://p.sf.net/sfu/learndevnow-d2d_______________________________________________
>> Simpy-users mailing list
>> Simpy-users <at> lists.sourceforge.net
(Continue reading)

Karen | 1 Feb 08:57
Picon

Re: Simpy 2.3.1

Hi

On 1 February 2012 19:56, Stefan Scherfke <stefan <at> sofa-rockers.org> wrote:
> And what is bakery.py?

It's part of a collection of  examples that are part of the SimPy
distribution, but not part of any manual.  It doesn't get tested as
it's output is mostly SimPlot.

It's not yet python 3 compliant either. (we need to go thru this
directory.) Runs under python 2.6.

Cheers
  Karen

------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
John | 1 Feb 09:56
Favicon

FW: Simpy 2.3.1


-----Original Message-----
From: John [mailto:collis-john <at> sky.com] 
Sent: 01 February 2012 08:57
To: 'Stefan Scherfke'
Subject: RE: [Simpy-users] Simpy 2.3.1

All of my problems have been identified and solved. Although I had installed
the latest Python and Simpy, I had an earlier version of Python (2.5) on the
computer, which was the one being used! Replacing this with the latest
version and reinstalling Simpy enabled me to get back to a working, stable
system.
Many thanks for your replies
John

-----Original Message-----
From: Stefan Scherfke [mailto:stefan <at> sofa-rockers.org] 
Sent: 01 February 2012 06:55
To: John
Cc: simpy-users <at> lists.sourceforge.net
Subject: Re: [Simpy-users] Simpy 2.3.1

Which version of Python do you have? SimPy 2.3 requires at least Python 2.6.

cheers,
Stefan

Am 2012-01-31 um 14:05 schrieb John:

> I've installed Simpy 2.3.1 and tried to 'compile' bakery.py, this is
(Continue reading)

cong k. (kc1g08 | 8 Feb 16:38
Picon

Re: Hospital patient flow questions

Hi Steven,

Thank you for your reply.

Do you have an example for your answer to question 1? It seems if I separate the files I will get a "Activating
function which is not a generator (contains no 'yield')" error.

For your answer in question 2, can multiple generators share the same PEM or share parts of the same PEM? For
example patient 1 arrives via public transport, goes through triage, then nurse assessment; patient 2
arrives via car, goes through the SAME triage, then straight to X-ray room.

Regards,

Kelong

 
On 30 Jan 2012, at 21:03, Steven Kennedy wrote:

> 1. Yes. Create your triage, etc classes in your servers.py file. Make
> sure servers.py is on your python path. Then just import the server
> module you've created: "import server" at the start of your main.py,
> and you can access all the classes using server.triage, etc.
> 
> 2. You can create multiple generator classes, each of which just
> creates Patient objects and starts their PEM. The generators can all
> have different attirbutes (eg. arrival times), and can create all
> Patients with the same attributes, or modify the attributes of the
> Patient if you want. eg:
> class ArrSelf(Process):
>   ...
(Continue reading)

Steven Kennedy | 8 Feb 22:07
Picon
Gravatar

Fwd: Hospital patient flow questions

I always forget to reply-all.

---------- Forwarded message ----------
From: Steven Kennedy <stevenkennedy2263 <at> gmail.com>
Date: Thu, Feb 9, 2012 at 8:00 AM
Subject: Re: [Simpy-users] Hospital patient flow questions
To: "cong k. (kc1g08)" <kc1g08 <at> soton.ac.uk>

Hi Cong,

For question 1:
Your classes that inherit from SimPy.Simulation.Process need to have
at least one function with a "yield" statement. Check your code - I
suspect this is where the error is coming from.

For question 2:
There are probably plenty of ways to do it, but I would model it this way:
1. Your patients are objects with attributes that define what will
happen to them when they go through the hospital processes
2. You will have several Stores that hold the Patient objects (eg.
waiting room, x-ray waiting line, etc)
3. Your generators simply create Patient objects at different rates,
with different attributes (e.g a patient arriving by ambulance may
have a higher likelihood of needing an x-ray). Once the Patient object
is created, they will be put into the WaitingRoom store.
4. Your Triage process has a single PEM which defines what happens to
the patient (ie. what Store they will be placed into next). This
should be based on attributes of the Patient object (eg. if
patient.broken_arm==True: yield put,self,XRayWaitLine,[patient]).
5. You then have other hospital processes (eg. X-Ray) that take
(Continue reading)

Roberto Pagliari | 9 Feb 23:09
Picon

Re: simpy installation error (python 3.2)

Hi Stefan,

it still gives me the same error:

Microsoft Windows [Version 6.1.7600]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

C:\Windows\system32>python
Python 3.2.2 (default, Sep  4 2011, 09:51:08) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> quit()

C:\Windows\system32>cd ..

C:\Windows>cd ..

C:\>cd Users

C:\Users>cd robertop

C:\Users\robertop>cd Desktop

C:\Users\robertop\Desktop>cd SimPy-2.3

>>python setup.py install
running install
running build
running build_py
running install_lib
creating C:\PROGRA~2\Python32\Lib\site-packages\SimPy
copying build\lib\SimPy\Globals.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
copying build\lib\SimPy\GUIDebug.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
copying build\lib\SimPy\Lib.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
copying build\lib\SimPy\Lister.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
copying build\lib\SimPy\Recording.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
copying build\lib\SimPy\SimGUI.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
copying build\lib\SimPy\SimPlot.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
copying build\lib\SimPy\Simulation.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
copying build\lib\SimPy\SimulationGUIDebug.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
copying build\lib\SimPy\SimulationRT.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
copying build\lib\SimPy\SimulationStep.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
copying build\lib\SimPy\SimulationTrace.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
copying build\lib\SimPy\stepping.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
creating C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test
copying build\lib\SimPy\test\support.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test
copying build\lib\SimPy\test\test_monitor.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test
copying build\lib\SimPy\test\test_rt_behavior.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test
copying build\lib\SimPy\test\test_simident.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test
copying build\lib\SimPy\test\test_simpy.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test
copying build\lib\SimPy\test\__init__.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test
copying build\lib\SimPy\tkconsole.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
copying build\lib\SimPy\tkprogressbar.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
copying build\lib\SimPy\__init__.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\Globals.py to Globals.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\GUIDebug.py to GUIDebug.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\Lib.py to Lib.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\Lister.py to Lister.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\Recording.py to Recording.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\SimGUI.py to SimGUI.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\SimPlot.py to SimPlot.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\Simulation.py to Simulation.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\SimulationGUIDebug.py to SimulationGUIDebug.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\SimulationRT.py to SimulationRT.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\SimulationStep.py to SimulationStep.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\SimulationTrace.py to SimulationTrace.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\stepping.py to stepping.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test\support.py to support.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test\test_monitor.py to test_monitor.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test\test_rt_behavior.py to test_rt_behavior.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test\test_simident.py to test_simident.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test\test_simpy.py to test_simpy.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test\__init__.py to __init__.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\tkconsole.py to tkconsole.pyc
  File "C:\PROGRA~2\Python32\Lib\site-packages\SimPy\tkconsole.py", line 137
    raise KeyError, 'no such configuration option \'%s\'' % key
                  ^
SyntaxError: invalid syntax

byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\tkprogressbar.py to tkprogressbar.pyc
byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\__init__.py to __init__.pyc
running install_egg_info
Writing C:\PROGRA~2\Python32\Lib\site-packages\SimPy-2.3-py3.2.egg-info


















On Sat, Jan 28, 2012 at 6:03 PM, Roberto <roberto.pagliari <at> gmail.com> wrote:
Thank you very much!!!


On Sat, Jan 28, 2012 at 1:46 AM, Stefan Scherfke <stefan <at> sofa-rockers.org> wrote:
I just uploaded SimPy 2.3.1 which should fix you problem. Sorry for the inconvenience.

regards,
Stefan


Am 2012-01-28 um 10:23 schrieb Stefan Scherfke:

> You need "distribute" for that. You should also install the package manager "pip". You can find both on PyPI.
>
> cheers,
> stefan
>
>
> Am 2012-01-27 um 23:32 schrieb Roberto:
>
>> I am not quite familiar with building libs in python
>>
>> python setup.py develop
>>
>> tells me that 'develop' option does not exist.
>>
>> On Fri, Jan 27, 2012 at 2:28 PM, Roberto <roberto.pagliari <at> gmail.com> wrote:
>> I am not quite familiar with building libs in python
>>
>> python setup.py develop
>>
>> tells me that 'develop' option does not exist.
>>
>>
>>
>> On Fri, Jan 27, 2012 at 2:24 PM, Stefan Scherfke <stefan <at> sofa-rockers.org> wrote:
>> Am 2012-01-27 um 23:18 schrieb Roberto Pagliari:
>>
>>> Hi,
>>> I'm getting this error while installing SimPy 2.3.
>>>
>>>>> python setup.py install
>>> running install
>>> running build
>>> running build_py
>>> running install_lib
>>> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\tkconsole.py to tkconsole.pyc
>>>  File "C:\PROGRA~2\Python32\Lib\site-packages\SimPy\tkconsole.py", line 137
>>>    raise KeyError, 'no such configuration option \'%s\'' % key
>>>                  ^
>>> SyntaxError: invalid syntax
>>>
>>> running install_egg_info
>>> Removing C:\PROGRA~2\Python32\Lib\site-packages\SimPy-2.3-py3.2.egg-info
>>> Writing C:\PROGRA~2\Python32\Lib\site-packages\SimPy-2.3-py3.2.egg-info
>>>
>>> do you know what the proglem might be?
>>
>> Yes, and it’s my fault. We didn’t make the GUI stuff Python 3 compatible, because we’re planning to remove it in the next version. However, I wasn’t aware that the GUI modules would produce SyntaxErrors when you install SimPy. I’ll fix this as soon as possible.
>>
>> As a work-around, you can install SimPy in development mode via "python setup.py develop" or "pip install -e ." (from the directory that contains the setup.py)
>>
>> Regards,
>> Stefan
>>
>>
>>> ------------------------------------------------------------------------------
>>> Try before you buy = See our experts in action!
>>> The most comprehensive online learning library for Microsoft developers
>>> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
>>> Metro Style Apps, more. Free future releases when you subscribe now!
>>> http://p.sf.net/sfu/learndevnow-dev2_______________________________________________
>>> Simpy-users mailing list
>>> Simpy-users <at> lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/simpy-users
>>
>>
>>
>> ------------------------------------------------------------------------------
>> Try before you buy = See our experts in action!
>> The most comprehensive online learning library for Microsoft developers
>> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
>> Metro Style Apps, more. Free future releases when you subscribe now!
>> http://p.sf.net/sfu/learndevnow-dev2_______________________________________________
>> Simpy-users mailing list
>> Simpy-users <at> lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/simpy-users
>
>
> ------------------------------------------------------------------------------
> Try before you buy = See our experts in action!
> The most comprehensive online learning library for Microsoft developers
> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
> Metro Style Apps, more. Free future releases when you subscribe now!
> http://p.sf.net/sfu/learndevnow-dev2
> _______________________________________________
> Simpy-users mailing list
> Simpy-users <at> lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/simpy-users



------------------------------------------------------------------------------
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
_______________________________________________
Simpy-users mailing list
Simpy-users <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/simpy-users


------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
Simpy-users mailing list
Simpy-users <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/simpy-users
Stefan Scherfke | 10 Feb 08:27
Gravatar

Re: simpy installation error (python 3.2)

Hi,

it looks like you are using SimPy 2.3. The bug is fixed in 2.3.1.

I recommend you to install PIP (a package manager for python: http://pypi.python.org/pypi/pip)
and install SimPy with it:

   pip install -U simpy

Cheers,
Stefan

Am 2012-02-09 um 23:09 schrieb Roberto Pagliari:

> Hi Stefan,
> it still gives me the same error:
> 
> Microsoft Windows [Version 6.1.7600]
> Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
> 
> C:\Windows\system32>python
> Python 3.2.2 (default, Sep  4 2011, 09:51:08) [MSC v.1500 32 bit (Intel)] on win32
> Type "help", "copyright", "credits" or "license" for more information.
>>>> quit()
> 
> C:\Windows\system32>cd ..
> 
> C:\Windows>cd ..
> 
> C:\>cd Users
> 
> C:\Users>cd robertop
> 
> C:\Users\robertop>cd Desktop
> 
> C:\Users\robertop\Desktop>cd SimPy-2.3
> 
>>> python setup.py install
> running install
> running build
> running build_py
> running install_lib
> creating C:\PROGRA~2\Python32\Lib\site-packages\SimPy
> copying build\lib\SimPy\Globals.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
> copying build\lib\SimPy\GUIDebug.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
> copying build\lib\SimPy\Lib.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
> copying build\lib\SimPy\Lister.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
> copying build\lib\SimPy\Recording.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
> copying build\lib\SimPy\SimGUI.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
> copying build\lib\SimPy\SimPlot.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
> copying build\lib\SimPy\Simulation.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
> copying build\lib\SimPy\SimulationGUIDebug.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
> copying build\lib\SimPy\SimulationRT.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
> copying build\lib\SimPy\SimulationStep.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
> copying build\lib\SimPy\SimulationTrace.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
> copying build\lib\SimPy\stepping.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
> creating C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test
> copying build\lib\SimPy\test\support.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test
> copying build\lib\SimPy\test\test_monitor.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test
> copying build\lib\SimPy\test\test_rt_behavior.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test
> copying build\lib\SimPy\test\test_simident.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test
> copying build\lib\SimPy\test\test_simpy.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test
> copying build\lib\SimPy\test\__init__.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test
> copying build\lib\SimPy\tkconsole.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
> copying build\lib\SimPy\tkprogressbar.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
> copying build\lib\SimPy\__init__.py -> C:\PROGRA~2\Python32\Lib\site-packages\SimPy
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\Globals.py to Globals.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\GUIDebug.py to GUIDebug.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\Lib.py to Lib.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\Lister.py to Lister.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\Recording.py to Recording.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\SimGUI.py to SimGUI.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\SimPlot.py to SimPlot.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\Simulation.py to Simulation.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\SimulationGUIDebug.py to SimulationGUIDebug.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\SimulationRT.py to SimulationRT.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\SimulationStep.py to SimulationStep.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\SimulationTrace.py to SimulationTrace.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\stepping.py to stepping.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test\support.py to support.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test\test_monitor.py to test_monitor.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test\test_rt_behavior.py to test_rt_behavior.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test\test_simident.py to test_simident.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test\test_simpy.py to test_simpy.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\test\__init__.py to __init__.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\tkconsole.py to tkconsole.pyc
>  File "C:\PROGRA~2\Python32\Lib\site-packages\SimPy\tkconsole.py", line 137
>    raise KeyError, 'no such configuration option \'%s\'' % key
>                  ^
> SyntaxError: invalid syntax
> 
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\tkprogressbar.py to tkprogressbar.pyc
> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\__init__.py to __init__.pyc
> running install_egg_info
> Writing C:\PROGRA~2\Python32\Lib\site-packages\SimPy-2.3-py3.2.egg-info
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> On Sat, Jan 28, 2012 at 6:03 PM, Roberto <roberto.pagliari <at> gmail.com> wrote:
> Thank you very much!!!
> 
> 
> On Sat, Jan 28, 2012 at 1:46 AM, Stefan Scherfke <stefan <at> sofa-rockers.org> wrote:
> I just uploaded SimPy 2.3.1 which should fix you problem. Sorry for the inconvenience.
> 
> regards,
> Stefan
> 
> 
> Am 2012-01-28 um 10:23 schrieb Stefan Scherfke:
> 
>> You need "distribute" for that. You should also install the package manager "pip". You can find both on PyPI.
>> 
>> cheers,
>> stefan
>> 
>> 
>> Am 2012-01-27 um 23:32 schrieb Roberto:
>> 
>>> I am not quite familiar with building libs in python
>>> 
>>> python setup.py develop
>>> 
>>> tells me that 'develop' option does not exist.
>>> 
>>> On Fri, Jan 27, 2012 at 2:28 PM, Roberto <roberto.pagliari <at> gmail.com> wrote:
>>> I am not quite familiar with building libs in python
>>> 
>>> python setup.py develop
>>> 
>>> tells me that 'develop' option does not exist.
>>> 
>>> 
>>> 
>>> On Fri, Jan 27, 2012 at 2:24 PM, Stefan Scherfke <stefan <at> sofa-rockers.org> wrote:
>>> Am 2012-01-27 um 23:18 schrieb Roberto Pagliari:
>>> 
>>>> Hi,
>>>> I'm getting this error while installing SimPy 2.3.
>>>> 
>>>>>> python setup.py install
>>>> running install
>>>> running build
>>>> running build_py
>>>> running install_lib
>>>> byte-compiling C:\PROGRA~2\Python32\Lib\site-packages\SimPy\tkconsole.py to tkconsole.pyc
>>>> File "C:\PROGRA~2\Python32\Lib\site-packages\SimPy\tkconsole.py", line 137
>>>>   raise KeyError, 'no such configuration option \'%s\'' % key
>>>>                 ^
>>>> SyntaxError: invalid syntax
>>>> 
>>>> running install_egg_info
>>>> Removing C:\PROGRA~2\Python32\Lib\site-packages\SimPy-2.3-py3.2.egg-info
>>>> Writing C:\PROGRA~2\Python32\Lib\site-packages\SimPy-2.3-py3.2.egg-info
>>>> 
>>>> do you know what the proglem might be?
>>> 
>>> Yes, and it’s my fault. We didn’t make the GUI stuff Python 3 compatible, because we’re planning
to remove it in the next version. However, I wasn’t aware that the GUI modules would produce
SyntaxErrors when you install SimPy. I’ll fix this as soon as possible.
>>> 
>>> As a work-around, you can install SimPy in development mode via "python setup.py develop" or "pip
install -e ." (from the directory that contains the setup.py)
>>> 
>>> Regards,
>>> Stefan
>>> 
>>> 
>>>> ------------------------------------------------------------------------------
>>>> Try before you buy = See our experts in action!
>>>> The most comprehensive online learning library for Microsoft developers
>>>> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
>>>> Metro Style Apps, more. Free future releases when you subscribe now!
>>>> http://p.sf.net/sfu/learndevnow-dev2_______________________________________________
>>>> Simpy-users mailing list
>>>> Simpy-users <at> lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/simpy-users
>>> 
>>> 
>>> 
>>> ------------------------------------------------------------------------------
>>> Try before you buy = See our experts in action!
>>> The most comprehensive online learning library for Microsoft developers
>>> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
>>> Metro Style Apps, more. Free future releases when you subscribe now!
>>> http://p.sf.net/sfu/learndevnow-dev2_______________________________________________
>>> Simpy-users mailing list
>>> Simpy-users <at> lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/simpy-users
>> 
>> 
>> ------------------------------------------------------------------------------
>> Try before you buy = See our experts in action!
>> The most comprehensive online learning library for Microsoft developers
>> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
>> Metro Style Apps, more. Free future releases when you subscribe now!
>> http://p.sf.net/sfu/learndevnow-dev2
>> _______________________________________________
>> Simpy-users mailing list
>> Simpy-users <at> lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/simpy-users
> 
> 
> 
> ------------------------------------------------------------------------------
> Try before you buy = See our experts in action!
> The most comprehensive online learning library for Microsoft developers
> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
> Metro Style Apps, more. Free future releases when you subscribe now!
> http://p.sf.net/sfu/learndevnow-dev2
> _______________________________________________
> Simpy-users mailing list
> Simpy-users <at> lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/simpy-users
> 
> 

------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
Linus Jundén | 12 Feb 10:59
Picon

Citing SimPy in a scientific article

Hello everyone!

I want to cite SimPy in an article. What should I write? Refering to the Documentation? Citing Klaus et al?

Please share your experiences around this, or maybe the founders have a prefered way to be cited? Bibtex reference would be nice.


Best Regards

Linus Jundén
Umeå University
Sweden

------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
Simpy-users mailing list
Simpy-users <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/simpy-users
Stefan Scherfke | 12 Feb 11:13
Gravatar

Re: Citing SimPy in a scientific article

Hi Linus,

afaik, there are no recent papers or presentations you could cite. So if you just want to cite SimPy as a
library, you could simply refer to http://simpy.sourceforge.net/ with a misc/booklet/webpage entry.

But maybe Tony has a better idea?

Regards,
Stefan

Am 2012-02-12 um 10:59 schrieb Linus Jundén:

> Hello everyone!
> 
> I want to cite SimPy in an article. What should I write? Refering to the Documentation? Citing Klaus et al?
> 
> Please share your experiences around this, or maybe the founders have a prefered way to be cited? Bibtex
reference would be nice.
> 
> 
> Best Regards
> 
> Linus Jundén
> Umeå University
> Sweden
> ------------------------------------------------------------------------------
> Virtualization & Cloud Management Using Capacity Planning
> Cloud computing makes use of virtualization - but cloud computing 
> also focuses on allowing computing to be delivered as a service.
> http://www.accelacomm.com/jaw/sfnl/114/51521223/_______________________________________________
> Simpy-users mailing list
> Simpy-users <at> lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/simpy-users

------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/

Gmane