Getting Started
00:00
In this lesson, you’re going to set up your development environment to get started with simpy
. In a new folder, go ahead and make a new virtual environment. I’m going to use venv
, but feel free to use whichever solution you like.
00:20
Once that’s been created, you can go ahead and activate the environment, and then pip install simpy
.
00:31
While you can use something like a Jupyter Notebook to run the simulations, I’m going to use the Python shell to run it in the terminal for this course. To collect everything in a script, go ahead and make a new file called simulate.py
.
00:49
And you’re all set! Now that your development environment is set up, it’s time to decide on the simulation and figure out how you’re going to model it using simpy
.
Become a Member to join the conversation.