Installing Python
Before you can deploy your app on the production server, you need to install Python. Here's how you can do that:
Debian, Ubuntu |
sudo apt-get update sudo apt-get install -y python |
Red Hat, CentOS, Fedora, Amazon Linux, Scientific Linux |
sudo yum -y install python python-pip |
macOS | You don't have to do anything. Python is already installed. |
Other operating systems | Please install Python from www.python.org. |
When you are done, continue to the next step.
Continue: Install Passenger »